すみだ川(リード・シート)


sumidagawa01.pdf 直
sumidagawa01.midi 直

\version "2.16.2"

\header {
  title = "すみだ川"
  composer = "山田 栄一"
}

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

chordNames = \chordmode {
  \global
  % Chords follow here.
  \set chordChanges =##t
  a4:m e:7 e:7 d:m a:m a:m d:m d:m
  a:m a:m d:m d:m a8:m s8 s4 e2:7
  d4:m d:m a:m d:m a:m a:m d:m e:7
  a:m a:m d:m6 d:m6 d:m d:m
  a:m a:m e:7 e:7 e:7 a:m e2:7
  
}

melody = \relative c'' {
  \global
  % Music follows here.
  \autoBeamOff
  r8 a b b ~
  b16 b[ c b] a8 f8
  e8. e16 e'8 c
  b8(\times2/3{a16[ b a]}  f8) e
  \break
  r a f e~
  e16 a b[a] f8 a(
  e) fis16 fis e8 c 
  b2
  \break
  r8 b b d
  e f16[ e] a8 f
  e4 c'8 b
  a f e4
  \break
  r8 e' c4(
  b8.[ c32 b] a8[ f]~
  f) b a f
  \break
  e r g [fis]
  e4( c8[ b~]
  b) e c[ a]
  b2
  \bar "||"
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

\score {
  <<
    \new ChordNames \chordNames
    \new Staff { \melody }
    \addlyrics { \verse }
  >>
  \layout { }
  \midi { }
}