LSR: Update.
[lilypond.git] / input / lsr / use-square-bracket-at-the-start-of-a-staff-group.ly
blob28d9c45b3d17809898461cf249cc4db7bef88f7e
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.51"
5 \header {
6 lsrtags = "staff-notation, contexts-and-engravers"
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}.
14 doctitlees = "Uso del corchete recto al comienzo de un grupo de pentagramas"
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.
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 >> }