]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/use-square-bracket-at-the-start-of-a-staff-group.ly
LSR: Update.
[lilypond.git] / Documentation / snippets / use-square-bracket-at-the-start-of-a-staff-group.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.4"
5
6 \header {
7   lsrtags = "staff-notation, contexts-and-engravers"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10   texidoces = "
11 Se puede usar el delimitador de comienzo de un sistema
12 @code{SystemStartSquare} estableciéndolo explícitamente dentro de
13 un contexto @code{StaffGroup} o @code{ChoirStaffGroup}.
14
15 "
16   doctitlees = "Uso del corchete recto al comienzo de un grupo de pentagramas"
17
18
19 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
20   texidocde = "
21 Die Klammer zu Beginn von Systemgruppen kann auch in eine eckige Klammer
22 (@code{SystemStartSquare}) umgewandelt werden, wenn man sie explizit
23 im @code{StaffGroup}- oder @code{ChoirStaffGroup}-Kontext setzt.
24
25 "
26   doctitlede = "Eine eckige Klammer zu Beginn von Systemgruppen benutzen"
27
28   texidoc = "
29 The system start delimiter @code{SystemStartSquare} can be used by
30 setting it explicitly in a @code{StaffGroup} or @code{ChoirStaffGroup}
31 context.
32
33 "
34   doctitle = "Use square bracket at the start of a staff group"
35 } % begin verbatim
36
37 \score {
38   \new StaffGroup { <<
39   \set StaffGroup.systemStartDelimiter = #'SystemStartSquare
40     \new Staff { c'4 d' e' f' }
41     \new Staff { c'4 d' e' f' }
42   >> }
43 }
44