ちょうちょう


chouchou01.midi 直
chouchou01.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 c
  c g:7 c c
  g:7 g:7 c c 
  c g:7 c c
  
}

melody = \relative c'' {
  \global
  % Music follows here.
g8 e e4 
f8 d d4
c8 d e f
g g g4
\break
g8 e e e
f d d d
c e g g
e e e4
\break 
d8 d d d
d e f 4
e8 e e e
e f g 4
\break
g8 e e e
f d d4
c8 e g g
e e e4
\bar "|."
  
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

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