仰げば尊し


aogebatoutoshi01.midi 直
aogebatoutoshi01.pdf 直

\version "2.16.0"

\header {
  title = "仰げば尊し"
  composer = "作曲者不詳"
}

global = {
  \key c \major
  \numericTimeSignature
  \time 6/8
  \tempo 4=80
  \partial 8
}

chordNames = \chordmode {
  \global
  % Chords follow here.
  \set chordChanges = ##t
  s8 c2. f4. c g:7 f g2.:7 
  c f4. c g2.:7 c
  f c d:7 g:7
  c
  f g:7 c4.~c4
}

melody = \relative c'' {
  \global
  % Music follows here.
  e,8 |%0
  e4 f8 g4 g8 |%1
  a4 a8 g4 e8 |%
  d4 e8 f4 a8 |%
  g4.~ g4 e8 |%
  \break
  e4 f8 g4 g8 |%
  a4 a8 g4 e8 |%
  d4 a'8 g4 b,8 |%
  c4.~c4 c8|%
  \break
  a'4 a8 f4 a8|%
  g4 e8 g4 g8 |%
  a4 c8 b4 a8 |%
  g4.~g4 f 8 |%
  \break
  e4 f8 g4 c8 |%
  c4 a8 a4 \fermata f8 |%
  d4 f8 e4 d8 |%
  c4.~c4
  \bar "|."
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

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