日の丸

単純だけど不思議なメロディーの歌だと思います。わたしは小学校で習った覚えはありませんが、いまは教えるのだろうか。

hinomaru01.midi 直
hinomaru01.pdf 直

\version "2.16.0"

\header {
  title = "日の丸の旗(ひのまる)"
  composer = "岡野貞一"
}

global = {
  \key c \major
  \numericTimeSignature
  \time 2/4
  \tempo 4=100
}

chordNames = \chordmode {
  \global
  % Chords follow here.
  \set chordChanges = ##t
  c2 g:7 c g:7
  c c f c
  f c c g:7
  c c g:7 c
}

melody = \relative c' {
  \global
  % Music follows here.
  c4 c 
  d d 
  e e
  d r
  \break
  e e 
  g g
  a a
  g r
  \break
  a a
  g g 
  e c d r
  \break
  g g
  e c 
  d e c r
  \bar "|."
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

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