あの町この町(日が暮れる)


anomachikonomachi.midi 直
anomachikonomachi.pdf 直

\version "2.16.0"

\header {
  title = "あの町この町"
  composer = "中山晋平"
}

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

chordNames = \chordmode {
  \global
  % Chords follow here.
  c2:m c:m g:7 c:m
  g:7 c:m g:7 g:7
  f4:m g:7 c2:m f4:m g:7 c2:m
}

melody = \relative c'' {
  \global
  % Music follows here.
  \autoBeamOff
  c,8 c c bes |
  c es f es |
  f g bes d |
  c4. r8 |
  \break
  g8 bes c d |
  c4. r8 |
  d c bes g |
  f f bes g |
  \break
  f f g f16[es] |
  c4. es8 |
  f f g f16[es] |
  c4. r8
  \bar"|."
  
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

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