]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/use-square-bracket-at-the-start-of-a-staff-group.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / use-square-bracket-at-the-start-of-a-staff-group.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.62"
4
5 \header {
6   lsrtags = "staff-notation, contexts-and-engravers"
7
8   texidoces = "
9 Se puede usar el delimitador de comienzo de un sistema
10 @code{SystemStartSquare} estableciéndolo explícitamente dentro de
11 un contexto @code{StaffGroup} o @code{ChoirStaffGroup}.
12
13 "
14   doctitlees = "Uso del corchete recto al comienzo de un grupo de pentagramas"
15
16   texidoc = "
17 The system start delimiter @code{SystemStartSquare} can be used by
18 setting it explicitly in a @code{StaffGroup} or @code{ChoirStaffGroup}
19 context. 
20
21 "
22   doctitle = "Use square bracket at the start of a staff group"
23 } % begin verbatim
24 \score {
25   \new StaffGroup { << 
26   \set StaffGroup.systemStartDelimiter = #'SystemStartSquare
27     \new Staff { c'4 d' e' f' }
28     \new Staff { c'4 d' e' f' }
29   >> }
30 }