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