みかんの花咲く丘

こんな簡単な曲でも間違えて覚えていました。音痴だからだろうか。しかしこのとしで気づくということは楽器を練習していることの効用だと思います。あやうく、間違って覚えたまま死ぬところだった。まあどうでもいいですが。

mikannohana01.midi 直
mikannohana01.pdf 直

\version "2.16.0"

\header {
  subtitle = "みかんの花咲く丘"
  composer = "海沼 実"
}

global = {
  \key a \major
  \numericTimeSignature
  \time 6/8
  \tempo 4=100
}

chordNames = \chordmode {
  \global
  % Chords follow here.
  \set chordChanges = ##t
  a2. a e4.:7 d a2.
  d d4. a4. a4. e:7 a2.
  a2. a a e:7
  a a e:7 a
}

melody = \relative c' {
  \global
  % Music follows here.
  e4 e8 cis4 d8 |%1
  e4 fis8 e4. |%2
  a8 gis b a4 fis8 |%3
  e4.~ e4 r8 |%4
  \break
  fis4 gis8 a4 b8 |%5
  a4 fis8 e4(a8) |%6
  fis4 e8 b d cis |%7
  a4.~ a4 r8 |%8
  \break
  cis4 cis8 a4 b8 |%9
  cis4 e8 e4. |%10
  a4 e8 a4 cis8 |%11
  b4.~b4 r8 |%12
  \break
  cis4 d8 cis b a |%13
  fis4 e8 a4. |%14
  b4 cis8 b4 b8 |%15
  a4.~a4 r8 |%16
  \bar "|."
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

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