1
2\header {
3texidoc = "Disregarding the value of @code{systemStartDelimiter}, setting
4@code{SystemStart@var{Grob}} style of @code{StaffGroup} to @code{'brace} always
5prints a @code{SystemStartBrace}.
6
7Every @code{StaffGroup} should start with a @code{SystemStartBrace}.
8"
9}
10
11\version "2.21.1"
12
13\layout {
14  \context {
15    \StaffGroup
16    \override SystemStartBar.style = #'brace
17    \override SystemStartBrace.style = #'brace
18    \override SystemStartBracket.style = #'brace
19    \override SystemStartSquare.style = #'brace
20  }
21}
22
23mus = << b1 b1 >>
24<<
25\new StaffGroup \with { systemStartDelimiter = #'SystemStartBracket } \mus
26\new StaffGroup \with { systemStartDelimiter = #'SystemStartBrace } \mus
27\new StaffGroup \with { systemStartDelimiter = #'SystemStartSquare } \mus
28\new StaffGroup \with { systemStartDelimiter = #'SystemStartBar } \mus
29>>