]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/use-square-bracket-at-the-start-of-a-staff-group.ly
Merge commit 'origin/master'
[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 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
19   texidocde = "
20 Die Klammer zu Beginn von Systemgruppen kann auch in eine eckige Klammer
21 (@code{SystemStartSquare}) umgewandelt werden, wenn man sie explizit
22 im @code{StaffGroup}- oder @code{ChoirStaffGroup}-Kontext setzt.
23
24 "
25   doctitlede = "Eine eckige Klammer zu Beginn von Systemgruppen benutzen"
26
27   texidoc = "
28 The system start delimiter @code{SystemStartSquare} can be used by
29 setting it explicitly in a @code{StaffGroup} or @code{ChoirStaffGroup}
30 context.
31
32 "
33   doctitle = "Use square bracket at the start of a staff group"
34 } % begin verbatim
35
36 \score {
37   \new StaffGroup { <<
38   \set StaffGroup.systemStartDelimiter = #'SystemStartSquare
39     \new Staff { c'4 d' e' f' }
40     \new Staff { c'4 d' e' f' }
41   >> }
42 }
43