この世の花(あかく咲く花)

古い歌ですが、知ってますか?

konoyonohana01.pdf 直
konoyonohana01.midi 直

\version "2.16.0"

\header {
  title = "この世の花(あかく咲く花)"
  composer = "万城目正"
}

global = {
  \key a \minor
  \numericTimeSignature
  \time 4/4
  \tempo 4=88
}

chordNames = \chordmode {
  \global
  % Chords follow here.
  \set chordChanges = ##t
  a1:m a:m a:m e:7
  a:m a:m a2:m e:7 a1:m
  e:7
  a:m d:m e:7
  a:m d2:m a:m a:m e:7 a1:m
}

melody = \relative c'' {
  \global
  % Music follows here.
  a,4. ( c8) e4 e |%1
  e4 f16( e c b) a4 a |%2
  a'4. b16( a) f8( e) a( c) |%3
  b2. r4 |%4
  \break
  a4. b8 c4 b |%5
  a8.( c16) b16( a) f8 e4. ( f8) |%6
  a8 a e c e( f16 e) c8( b) |%7
  a2. r4 |%8
  \break
  b2 ~ b8 c16( b) a8 b |%9
  c8 b16(c) e8( f) e4 c8 e |%10
  f4. e16( c') c4 \times 2/3 { c8( b a) } |%11
  b2. r4 |%12
  \break
  r8 c8 c(b) a4. f16(e) |%13
  f8 ( b) a f e4 a |%14
  c,4. b16( c) f8( e) c b |%15
  a2. r4
  \bar "|."
  
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

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