たこのうた(たこたこあがれ)


takonouta01.midi 直
takonouta01.pdf 直

\version "2.16.0"

\header {
  title = "takono"
}
\version "2.16.0"

\header {
  title = "たこのうた"
  composer = "文部省唱歌"
}

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

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

melody = \relative c'' {
  \global
  % Music follows here.
  g4 e8 f
  g4 e8 f
  g4. a8
  g4 r
  a4. a8
  g4 e
  e4. c8
  d4 r
  g4 e8 f
  g4 e8 f
  g4. a8
  g4 r
  a4. a8
  g4 e
  d4. e8
  c4 r
  \bar "|."
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

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