あの子はたあれ


anokowataare.mid 直
anokowataare.pdf 直

\version "2.16.0"

\header {
  title = "あの子はたあれ"
  composer = "海沼実"
}

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

chordNames = \chordmode {
  \global
  % Chords follow here.
  a2:m a:m a:m e:7
  a:m e:7 d:m e:7
  e:7 a:m e:7 a:m
  a:m a:m e:7 a:m
}

melody = \relative c'' {
  \global
  % Music follows here.
  \autoBeamOff
  e,8. e16 e8. f16
  e 8. d16 e8 r
  e8. a16 b8. a16
  b4. r8
  \break
  a8. b16 c8. c16
  b8. a16 f8. e16
  d8. d16 d8. d16
  e4. r8
  \break
  b8. b16 b8. e16
  c8. b16 a8.[ a16]
  b8. c16 e8. f16
  e4. r8
  \break
  c8. e16 f8. e16
  a8. f16 e8. a16
  b8. a16 c8. b16
  a4. r8
  \bar "||"
}


\score {
  <<
    \new ChordNames \chordNames
    \new Staff { \melody }
  >>
  \layout { }
  \midi {
    \context {
      \Score
      tempoWholesPerMinute = #(ly:make-moment 100 4)
    }
  }
}