シンコペーテッド・クロック(部分)


syncopate01.midi 直
syncopate01.pdf 直

\version "2.16.0"

\header {
  title = "The Syncopated Clock (Part)"
  subtitle = "シンコペーテッド・クロック"
  composer = "Leroy Anderson"
}

global = {
  \key d \major
  \time 4/4
  \tempo 4=100
}

right = \relative c'' {
  \global
  % Music follows here.
  <cis g'a>4\sfz-> r r2 |%1
  r2 r4 \afterGrace a\mf\<( {b16[ cis]} |%2
  \bar "|:"
  d4-.\!\>) <cis e>-.\! <d fis>-. <b d>-. |%3
  <cis e>-. <dis fis>8( <e g>~ <e g>4.) a,8( |%4
  \break
  cis4-.) <b d\!>-. <cis e>-. <g cis> |%5
  <<{\stemDown fis4.cis'8 d4} \\ {\stemUp d8^( cis d e fis4)}>> \afterGrace a,4\<( {b16[cis]} |%6
  d4-.\!\>) <cis e>-.\! <d fis>-. <b d>-. |%7
  <cis e>-. <dis fis>8( <e g>~ <e g>4.) a,8( |%8
  \break
  <b d! e>4 <a dis fis> <c fis a> <b e g>) |%9
  r8 <gis d'! fis>4-. <g cis! e>8( <fis a d>4-.) \afterGrace a4\<( {b!16[ cis]} |%10
  \bar ":|"
  \stopStaff
  \hideNotes
  d32\!) s4
}

left = \relative c'' {
  \global
  % Music follows here.
  a4^\mf-.a,-.^\markup{ \italic "(clock imitation)"}  a'-. a,-. |%1
  a'-. a,-. a'-. a,-. |%2
  <d fis>-. a'-. a,-. a'-. |%3
  e-. a-. a,-. a'-. |%4
  
  e-. a-. a,-. a'-. |%5
  d,-. r8 a'~a a,~<a g'>4 |%6
  <d fis>4-. a'-. a,-. a'-. |%7
  e-. a-. a,-. a'-. |%8
  g( fis dis e) |%9
  
  r8 bes4-. a8( d4-.) <a g'>4 ( |%10
  \stopStaff
  \hideNotes
  <d f>32) s4
}

\score {
  \new PianoStaff \with {
    instrumentName = "Piano"
  } <<
    \new Staff = "right" \with {
      midiInstrument = "acoustic grand"
    } \right
    \new Staff = "left" \with {
      midiInstrument = "acoustic grand"
    } { \clef treble \left }
  >>
  \layout { }
  \midi { }
}