lilypond-user
[Top][All Lists]
Advanced

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

Re: staff order


From: Pierre Perol-Schneider
Subject: Re: staff order
Date: Tue, 13 Nov 2018 16:47:29 +0100

Hi Sean,
You have to write "\New Staff" instead of "\New staff":

\score {
  \new StaffGroup <<
    \new Staff {
      \key ees \major g''2 f8 g8~ | 
    }
    \new Staff {
      \key ees \major aes'8 ees'8 c'2 |
    }
  >>
}

\score {
  \new StaffGroup <<
    \new Staff {
      \key ees \major aes'8 ees'8 c'2 |
    }
    \new Staff {
      \key ees \major g''2 f8 g8~ | 
    }
  >>
}

HTH,
Cheers,
Pierre

PS. v.214 is pretty old. how about using v2.19?

Le mar. 13 nov. 2018 à 15:29, sean read <address@hidden> a écrit :
I'm trying to make my first multi staff lilypond file and finding that I can't figure out how to control the order of the staves. When I use


\version "2.14.1"
\score {
\new StaffGroup <<
\new staff {
\key ees \major g''2 f8 g8~ |  
}

\new staff {
\key ees \major aes'8 ees'8 c'2 | 

}
>>
}


The output always has the staff at the bottom on the top, but then when I move that staff to the top it is still on the top!

How to I explicitly define the order of staves?
_______________________________________________
lilypond-user mailing list
address@hidden
https://lists.gnu.org/mailman/listinfo/lilypond-user

reply via email to

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