うさぎ


usagi01.midi 直
usagi01.pdf 直

\version "2.16.0"

\header {
  title = "うさぎ(なにみてはねる)"
  composer = "わらべうた"
}

global = {
  \key a \minor
  \numericTimeSignature
  \time 2/4
  \tempo 4=80
}

chordNames = \chordmode {
  \global
  % Chords follow here.
  \set chordChanges = ##t
  f2 e: f e:m
  a:m d:m d4:m a:m d2:m a:m
}

melody = \relative c' {
  \global
  % Music follows here.
  \autoBeamOff
  f 4 f8 a |%1
  b a b4
  f8 f f a |%
  b a b4
  \break
  a c8 c
  b a16 a16 f 8 e
  a f e4
  f8[ e] d4
  e4 r
  \bar"|."
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

\score {
  <<
    \new ChordNames \with{midiInstrument = "blown bottle"}\chordNames
    \new Staff { \melody }
    \addlyrics { \verse }
  >>
  \layout { }
  \midi { }
}