1\version "2.16.0"
2\paper { ragged-right = ##t }
3
4\header {
5  texidoc = "@code{InstrumentName} is reasonable positioned even for unusual
6system-start-delimiters.
7
8Below, the @code{instrumentName} neither collides with the
9@code{SystemStartBracket} nor moves to far to the left."
10}
11
12
13\layout {
14  \context {
15    \StaffGroup
16    \override InstrumentName.self-alignment-X = #RIGHT
17    instrumentName = "StaffGroup"
18  }
19}
20
21\score {
22  \new StaffGroup << R1 R >>
23  \layout {
24    \override Score.SystemStartBar.collapse-height = 50
25  }
26}
27
28\score {
29  \new StaffGroup
30    \with { \override SystemStartBracket.X-offset = 10 }
31    << R1 R >>
32}
33