船頭さん(村の渡しの船頭さんは)


sendousan01.midi 直
sendousan01.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
  a2:m a:m a:m e:7
  a:m d:m e:7 a:m
  e:7 e:7 a:m a:m
  d:m d:m e:7 e:m
  d:m d:m e:7 a:m
}

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

verse = \lyricmode {
  % Lyrics follow here.
  
}

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