]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/display-bracket-with-only-one-staff-in-a-system.ly
Add dynamic script fffff; update docs.
[lilypond.git] / input / lsr / display-bracket-with-only-one-staff-in-a-system.ly
index ce632161a6b5b87ae87d90f5596f65d070bbace6..e8df72f9683925a339ce5954a8dc4b69ae2ea9d1 100644 (file)
@@ -1,44 +1,75 @@
 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-\version "2.11.38"
+\version "2.13.1"
 
 \header {
   lsrtags = "staff-notation, tweaks-and-overrides"
 
+%% Translation of GIT committish: dcd61338c753205b6f8d549389fcb0d999c3a675
+  texidoces = "
+Si hay un solo pentagrama en un de los tipos de sistema
+@code{ChoirStaff} o @code{StaffGroup}, el comportamiento
+predeterminado es que no se imprima el corchete en la barra inicial.
+Esto se puede cambiar sobreescribiendo las propiedades adecuadas.
+
+Observe que en contextos como @code{PianoStaff} y
+@code{GrandStaff} en que los sistemas empiezan con una llave en
+lugar de un corchete, se debe establecer el valor de una propiedad
+distinta, como se ve en el segundo sistema del ejemplo.
+
+"
+  doctitlees = "Mostrar corchete o llave en grupos de un solo pentagrama"
+
+  
+%% Translation of GIT committish: 0364058d18eb91836302a567c18289209d6e9706
+  texidocde = "
+Wenn nur ein System einer Systemgruppe vom Typ @code{ChoirStaff} oder
+@code{StaffGroup} angezeigt wird, wird die Klammer zu Beginn normalerweise
+nicht gesetzt.  Das kann verändert werden, indem man die ensprechende
+Eigenschaft veränder.
+
+Bei Systemen wie @code{PianoStaff} und @code{GrandStaff}, die mit einer
+geschweiften Klammer beginne, muss eine andere Eigenschaft verändt werden,
+wie das zweite Beispiel zeigt.
+
+"
+  doctitlede = "Klammer anzeigen, wenn nur ein System gesetzt wird"
+
   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.
+If there is only one staff in one of the staff types @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 some contexts such as @code{PianoStaff} where the systems
-begin with a brace instead of a bracket, another property has to be
-set, as shown on the second system in the example. 
+Note that in contexts such as @code{PianoStaff} and @code{GrandStaff}
+where the systems begin with a brace instead of a bracket, another
+property has to be set, as shown on the second system in the example. 
 
 "
   doctitle = "Display bracket with only one staff in a system"
 } % begin verbatim
-\markup \column {
+
+\markup \left-column {
   \score {
     \new StaffGroup <<
-    % Must be lower than your actual amount of staff lines
-    \override StaffGroup.SystemStartBracket #'collapse-height = #1
-    \override Score.SystemStartBar #'collapse-height = #1
-    \new Staff {
-      c'1
-    }
+      % Must be lower than the actual number of staff lines
+      \override StaffGroup.SystemStartBracket #'collapse-height = #1
+      \override Score.SystemStartBar #'collapse-height = #1
+      \new Staff {
+        c'1
+      }
     >>
-    \layout {ragged-right = ##t}
+    \layout { }
   }
+  \null
   \score {
     \new PianoStaff <<
-    \override PianoStaff.SystemStartBrace #'collapse-height = #1
-    \override Score.SystemStartBar #'collapse-height = #1
-    \new Staff {
-      c'
-    }
-    >> 
-    \layout {ragged-right = ##t}
+      \override PianoStaff.SystemStartBrace #'collapse-height = #1
+      \override Score.SystemStartBar #'collapse-height = #1
+      \new Staff {
+        c'1
+      }
+    >>
+    \layout { }
   }
-} 
+}