Hi,

> I am trying to understand spacer rests and global block.

This is how I would organize your score:

%%%  SNIPPET BEGINS
\version "2.19.81"

global = {
  \key c \major
  \numericTimeSignature
  \time 4/4
  \tempo "Fast!"
  s1*4
  \tempo "Largo"
  s1*3
  \tempo "Allegro"
}

cello = \relative c {
  \clef bass
  c d e f e d c d e f e d c d e f e d
}

right = \relative c'' {
  c1 d e f c d e f
}

left = \relative c' {
  \clef bass
  c1 d e f c d e f
}

\score {
 <<
   \new Staff
     \with {
       instrumentName = "Cello"
     }
     << \global \cello >>
   \new PianoStaff
     \with {
       instrumentName = "Piano"
     }
     <<
       \new Staff = "right" << \global \right >>
       \new Staff = "left" << \global \left >>
     >>
 >>
}
%%%  SNIPPET ENDS

Hope that helps!
Kieren.
________________________________

Kieren MacMillan, composer
‣ website: www.kierenmacmillan.info
‣ email: [email protected]


_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to