一月一日(年の始めのためしとて)

終わりなき世のめでたさ、というのが子供の頃不思議でした。

ichigatsutsuitachi01.midi 直
ichigatsutsuitachi01.pdf 直

\version "2.16.0"

\header {
  title = "一月一日"
  composer = "上 真行"
}

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

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

melody = \relative c'' {
  \global
  % Music follows here.
  g2 a4 g |%1
  e4. d8 c4 c |%2
  d d g4. f8 |%3
  e2. r4 |%4
  \break
  g2 a4 g |%5
  e4. d8 c4 c |%6
  d d e4. d8 |%7
  c2. r4 |%8
  \break
  c' c c a |%9
  c2 g4 g |%10
  a a g4. f8 |%11
  e2. r4 |%12
  \break
  g2 a4 g |%13
  c4. a8 g4 f |%14
  e g f4. d8 |%15
  c2. r4 |%16
  \bar "|."
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

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