チューリップ(咲いた咲いた)

きょうはカンタンなところで、チューリップです。

tulip01.midi 直
tulip01.pdf 直

\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*3 g2:7
  c2 * 3 g4:7 c
  c2 f4 c c g:7 c2
}

melody = \relative c' {
  \global
  % Music follows here.
  c8 d e4 |%1
  c8 d e4 |%2
  g8 e d c |%3
  d e d4 |%4 
  \break
  c8 d e4 |%5
  c8 d e4 |%6
  g8 e d c |%7
  d e c4 |%8
  \break
  g'8 g e g |%9
  a a g4 |%10
  e8 e d d |%11
  c4 r4 |%12
  \break
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

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