bug-lilypond
[Top][All Lists]
Advanced

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

staves in reversed order


From: Nicolas Sceaux
Subject: staves in reversed order
Date: Wed, 24 Aug 2005 13:39:53 +0200
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (darwin)

Hi,

With the following snippet, using LilyPond from CVS, I get all the
staves in reversed order, ie Bassi in the top of the system and Corno in
the bottom.

nicolas

\version "2.7.8"

theNotes = {
  r2 r4 b |
  d'2 fis' |
  g'4 d' c' g' |
  fis'2 fis'4 a' |
  d'2 fis' |
  g'4  fis'8[ e'] d'4 c' |
}

theLyrics = \lyricmode {
  Ri -- tor -- "ni o" -- mai nel no -- stro co -- re
  la bel -- la gio -- "ja ed" il pia -- cer,
}

\score {
  \new StaffGroup <<
    \new InnerStaffGroup <<
      \new Staff <<
        \set Staff.instrument = \markup \column { "Corno I." \smaller \italic 
"ex G." }
        { s }
      >>
      \new Staff <<
        \set Staff.instrument = \markup "Corno II."
        { s }
      >>
      \new Staff <<
        \set Staff.instrument = \markup \column { "Corno III." \smaller \italic 
"ex D." }
        { s }
      >>
      \new Staff <<
        \set Staff.instrument = \markup "Corno IV."
        { s }
      >>
    >>
    
    \new Staff <<
      \set Staff.instrument = \markup \column { "Oboe I." "Violino I." }
      { s }
    >>
    \new Staff <<
      \set Staff.instrument = \markup \column { "Oboe II." "Violino II." }
      { s }
    >>
    \new Staff <<
      \set Staff.instrument = \markup "Viola."
      \clef alto
      { s }
    >>
    
    \new InnerStaffGroup <<
      \new Staff <<
        \set Staff.instrument = \markup \column { "Cuzzoni, e" "Durastanti." }
        \context Voice  = "soprano1" \theNotes
      >> \lyricsto "soprano1" \new Lyrics \theLyrics 
      \new Staff <<
        \set Staff.instrument = \markup \column { "Robinson, e" "Senesino." }
        \context Voice = "soprano2" \theNotes 
      >> \lyricsto "soprano2" \new Lyrics \theLyrics 
      \new Staff <<
        \set Staff.instrument = \markup \column { "Berenstadt," "e Bigongi." }
        \clef alto
        \context Voice  = "alto" \theNotes
      >> \lyricsto "alto" \new Lyrics \theLyrics
      \new Staff <<
        \set Staff.instrument = \markup \column { "Boschi, e" "Le Guare." } 
        \clef bass
        \context Voice = "bass" \transpose c c, \theNotes
      >> \lyricsto "bass" \new Lyrics \theLyrics
    >>
    
    \new Staff <<
      \set Staff.instrument = \markup "Bassi." 
      \clef bass
      { s }
    >>
  >>
}




reply via email to

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