lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Spacer Rests Global Confusion


From: Kieren MacMillan
Subject: Re: Spacer Rests Global Confusion
Date: Thu, 26 Apr 2018 11:15:36 -0400

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: address@hidden




reply via email to

[Prev in Thread] Current Thread [Next in Thread]