兔のダンス(ソソラソラソラ)

うさぎ(兔)の漢字の書き順と画数を間違って覚えていました。8画だそうです。
あと、歌い出しはタラッタラッタラッタと思ってたら、ソソラソラソラなんですね。

usaginodance.midi 直
usaginodance.pdf 直

\version "2.16.0"

\header {
  title = "兔のダンス(ソソラソラソラ)"
  subtitle = "タラッタラッタラッタ"
  composer = "中山晋平"
}

global = {
  \key a \major
  \numericTimeSignature
  \time 2/4
}

chordNames = \chordmode {
  \global
  % Chords follow here.
  \set chordChanges=##t
  a2 a a d4 e:7
  a2 a d e:7
  a a a e:7
  a a a4 d e:7 a
}

melody = \relative c' {
  \global
  % Music follows here.
  r8. cis16 e8. fis16 |%1
  e8. d16 cis8. b16 |%2
  a8. b16 cis8. e16 |%3
  fis8. cis16 e4 |%4
  \break
  r8. cis16 e8. cis16 |%5
  e8. fis16 a8. b16 |%6
  cis8. a16 b8. a16 |%7
  gis8. fis16 e4 |%8
  \break
  r8. e16 cis'8. cis16 |%9
  b8. a16 gis8. fis16 |%10
  e8. cis16 e8. cis16 |%11
  e8. fis16 e4 |%12
  \break
  r8. cis16 e8. cis16 |%13
  e8. fis16 a8. b16 |%14
  cis8. e,16 fis8. e16 |%15
  fis8. b16 a4 |%16
  \bar "|."
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

\score {
  <<
    \new ChordNames \with{midiInstrument="blown bottle"}\chordNames
    \new Staff { \melody }
    \addlyrics { \verse }
  >>
  \layout { }
  \midi {
    \context {
      \Score
      tempoWholesPerMinute = #(ly:make-moment 100 4)
    }
  }
}