人生劇場(リード・シート)

歌い出しは

 

やると思えばどこまでやるさ

 

で、

サビの部分が

 

義理がすたればこの世はやみだ

 

なんですよね。

 

f:id:niming538:20140608054027p:image

jinseigekijo01.pdf => https://db.tt/aj7UBDDA

jinseigekijo01.midi => https://db.tt/gxBxDcun

 

\version "2.16.2"

\header {
  title = "人生劇場"
  composer = "古賀政男"
}

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

chordNames = \chordmode {
  \global
  % Chords follow here.
  \set chordChanges = ##t
  a2.:m a:m d:m f4 a 2 :m
  d2. :m f 2 a4 :m a 2.:m a:m
  a:m a:m d:m f4 a2:m
  a:m e4:7 f2. a2:m e4:7 a2.:m
}

melody = \relative c'' {
  \global
  % Music follows here.
  c,8.b16 a4 a |
  a8 a16 c e4 e |
  f8 e a4 a8 f16 b |
  a8 f e2 |
  \break
  f8 e a4 a8 a16 b |
  c8 a f f16 e a4 |
  a,8 b c b16 c e 8. f32 e |
  c8 b a2 |
  \break
  a'8 b c 8. b16 c8 e |
  e c c c16 b a 4 |
  d,8 e f e16 f a8. b16 |
  a8 f e2 |
  \break
  a4 a8 f16 e b'4 |
  a8 f e4 a |
  f 8 e c4 e8 c16 b |
  a2.
  \bar "|."
  
}

verse = \lyricmode {
  % Lyrics follow here.
  
}

\score {
  <<
    \new ChordNames \chordNames
    \new Staff { \melody }
    \addlyrics { \verse }
  >>
  \layout { }
  \midi { }
}