故郷を離るる歌


kokyouwohanaruru01.mid 直
kokyouwohanaruru01.pdf 直

\version "2.16.0"

\header {
  title = "故郷を離るる歌"
  composer = "ドイツ民謡"
}

global = {
  \key c \major
  \numericTimeSignature
  \time 4/4
  \partial 4
}

chordNames = \chordmode {
  \global
  % Chords follow here.
  s4 c 1 g c g2.
  s4 f1 c g c2.
  s4 c1 f g c2

}

melody = \relative c'' {
  \global
  % Music follows here.
    c,8 e
  g4 g g a8 g
  g f f e f a g f
  e4 c' g f8 e
  d2 r4 \bar ":|"
  c 8 c 
  a'  a a a c4 b8 a
  a g g g c4 g8 e
  d4 a' g f
  e2 r4
  \bar "|"
  \break
  \bar "|:"
  c8 e 
  g g g g g4 c8 b
  a a a a a4 d8 c
  b4 g g a8 b 
  c2 r
  \bar ":|"
  
  
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

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