聖者の行進

ピアノなどのキーボードでリード譜を弾く時、左手で一番簡単なコードの入れ方は、CだったらCの音だけを白玉で入れることだと思います。
あとは拍子に合わせて、ベース音とコードの一番上の音をかわるがわる弾くというのもよくやります。小指と人差し指しか使わない。
あと、今回の楽譜のように、ベース音とコードをそのまま押さえるのもコードを覚えていれば簡単。
いずれにしてもペダルはコードが同じ間は踏みっぱなしです。

seija02.midi 直
seija02.pdf 直

\version "2.16.0"

\header {
  title = "聖者の行進"
  subtitle = "When the Sants Go Marchin' In"
}
global = {
  \key c \major
  \numericTimeSignature
  \time 4/4
  \tempo 4=100
  \partial 2.
}

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

right = \relative c' {
  \global
  % Music follows here.
  c4 e f |%0
  g1~|%1
  g4 c, e f |%2
  g1~ |%3
  \break
  g4 c, e f |%4
  g2 e |%5
  c e |%6
  d1 ~ |%7
  \break
  d4 e4 e4 d |%8
  c2. c4 |%9
  e2 g |%10
  g4 f2.~ |%11
  \break
  f2 e 4 f |%12
  g2 e |%13
  c d |%
  c1~ |%14
  c4
  \bar "|."
}

left = \relative c {
  \global
  % Music follows here.
  r2.
  c,4 \repeat unfold 3 <c' e g>4
  c,4 \repeat unfold 3 <c' e g>4
  c,4 \repeat unfold 3 <c' e g>4
  
  c,4 \repeat unfold 3 <c' e g>4
  c,4 <c' e g> c, <c' e g>
  c,4 <c' e g> c, <c' e g>
  g4 \repeat unfold 3 <b f' g>4
  
  g4 \repeat unfold 3 <b f' g>4
  c,4 <c' e g> <c e g>2
  c,4 <c' e g> c, <c' e g>
  f,4 \repeat unfold 3 <c' f a>4
  
  f,4 \repeat unfold 3 <c' f a>4
  c,4 <c' e g> c, <c' e g>
  c,4 <c' e g> g<b  f' g>
  c,4 \repeat unfold 3 <c' e g>4
  <c e g>
}

\score {
  \new PianoStaff \with {
    instrumentName = "Piano"
  } <<
    \new ChordNames \with {midiInstrument = "blown bottle"}\chordNames
    \new Staff = "right" \with {
      midiInstrument = "acoustic grand"
    } \right
    \new Staff = "left" \with {
      midiInstrument = "acoustic grand"
    } { \clef bass \left }
  >>
  \layout { }
  \midi { }
}