bug-lilypond
[Top][All Lists]
Advanced

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

Re: InnerChoirStaff nested in StaffGroup doesn't work


From: Nicolas Sceaux
Subject: Re: InnerChoirStaff nested in StaffGroup doesn't work
Date: Sat, 08 Oct 2005 16:00:32 +0200
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (darwin)

Sven Axelsson <address@hidden> writes:

> The InnerStaffGroup and InnerChoirStaff produces exactly the same
> result.

You can define custom staff groups:

\version "2.7.12"
\layout {
  \context {
    \Score
    \accepts "OrchestraStaffGroup"
  }
  \context {
    \StaffGroup
    \name OrchestraStaffGroup
    \description "Like StaffGroup, but withut spanbar"
    \remove "Span_bar_engraver"
    \accepts "InstrumentStaffGroup"
  }
  \context {
    \StaffGroup
    \name InstrumentStaffGroup
    \description "Like StaffGroup, but withut brackets"
    \remove "System_start_delimiter_engraver"
  }
}

\new OrchestraStaffGroup <<
  \new InstrumentStaffGroup <<
    \new Staff { c''1 c''1 }
    \new InnerStaffGroup <<
      \new Staff { g'1 g'1 }
      \new Staff { e'1 e'1 }
    >>
    \new Staff <<
      \context Voice = toto { c'1 c'1 }
      \lyricsto toto \new Lyrics { do do }
    >>
  >>
  \new InstrumentStaffGroup <<
    \new Staff { \clef bass g1 g1 }
    \new Staff { \clef bass c1 c1 }
  >>
>>




reply via email to

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