]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/new/display-bracket-with-only-one-staff-in-a-system.ly
Merge branch 'master' of ssh://jneem@git.sv.gnu.org/srv/git/lilypond into tmp
[lilypond.git] / input / new / display-bracket-with-only-one-staff-in-a-system.ly
index 690f37114e0bc0966d04ffada1c93d1bb33861c9..f38616e553a7b24af6ca350bd402491556d94203 100644 (file)
@@ -1,11 +1,10 @@
-\version "2.11.38"
+\version "2.11.61"
 \header {
   lsrtags = "staff-notation,tweaks-and-overrides"
   texidoc = "If there is only one staff in one of the staff types
-@code{ChoirStaff}, @code{InnerChoirStaff}, @code{InnerStaffGroup}
-or @code{StaffGroup}, the bracket and the starting bar line will not
-be displayed as standard behavior.  This can be changed by overriding
-the relevant properties, as demonstrated in this example.
+@code{ChoirStaff} or @code{StaffGroup}, the bracket and the starting
+bar line will not be displayed as standard behavior.  This can be changed
+by overriding the relevant properties.
 
 Note that in contexts such as @code{PianoStaff} and @code{GrandStaff}
 where the systems begin with a brace instead of a bracket, another
@@ -14,7 +13,7 @@ property has to be set, as shown on the second system in the example.
   doctitle = "Display bracket with only one staff in a system"
 }
 
-\markup \column {
+\markup \left-column {
   \score {
     \new StaffGroup <<
       % Must be lower than the actual number of staff lines
@@ -24,7 +23,7 @@ property has to be set, as shown on the second system in the example.
         c'1
       }
     >>
-    \layout {}
+    \layout { }
   }
   \score {
     \new PianoStaff <<
@@ -34,6 +33,6 @@ property has to be set, as shown on the second system in the example.
         c'1
       }
     >>
-    \layout {}
+    \layout { }
   }
 }