Sven Axelsson <[EMAIL PROTECTED]> 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 OrchestraS
When nesting an InnerChoirStaff inside a StaffGroup the bar lines are *not*
disconnected. Example:
\version "2.7.11"
music = \relative c'' { g c g c g c g c }
\new StaffGroup <<
\new Staff \music
\new Staff \music
\new InnerStaffGroup <<
\new Staff \music
\new Staff \music
>>
\new Inner