]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/nesting-staves.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / nesting-staves.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, tweaks-and-overrides"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10   texidoces = "
11 Se puede utilizar la propiedad
12 @code{systemStartDelimiterHierarchy} para crear grupos de
13 pentagramas anidados de forma más compleja. La instrucción
14 @code{\\set StaffGroup.systemStartDelimiterHierarchy} toma una
15 lista alfabética del número de pentagramas producidos. Se puede
16 proporcionar antes de cada pentagrama un delimitador de comienzo
17 de sistema. Se debe encerrar entre corchetes y admite tantos
18 pentagramas como encierren las llaves. Se pueden omitir los
19 elementos de la lista, pero el primer corchete siempre abarca
20 todos los pentagramas. Las posibilidades son
21 @code{SystemStartBar}, @code{SystemStartBracket},
22 @code{SystemStartBrace} y @code{SystemStartSquare}.
23
24 "
25   doctitlees = "Anidado de grupos de pentagramas"
26
27
28 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
29   texidocde = "
30 Die Eigenschaft @code{systemStartDelimiterHierarchy} kann eingesetzt
31 werden, um komplizierte geschachtelte Systemklammern zu erstellen.  Der
32 Befehl @code{\\set StaffGroup.systemStartDelimiterHierarchy} nimmt eine
33 Liste mit der Anzahl der Systeme, die ausgegeben werden, auf.  Vor jedem
34 System kann eine Systemanfangsklammer angegeben werden.  Sie muss in Klammern eingefügt
35 werden und umfasst so viele Systeme, wie die Klammer einschließt.  Elemente
36 in der Liste können ausgelassen werden, aber die erste Klammer umfasst immer
37 die gesamte Gruppe.  Die Möglichkeiten der Anfangsklammer sind: @code{SystemStartBar},
38 @code{SystemStartBracket}, @code{SystemStartBrace} und
39 @code{SystemStartSquare}.
40
41 "
42   doctitlede = "Systeme schachteln"
43
44   texidoc = "
45 The property @code{systemStartDelimiterHierarchy} can be used to make
46 more complex nested staff groups. The command @code{\\set
47 StaffGroup.systemStartDelimiterHierarchy} takes an alphabetical list of
48 the number of staves produced. Before each staff a system start
49 delimiter can be given. It has to be enclosed in brackets and takes as
50 much staves as the brackets enclose. Elements in the list can be
51 omitted, but the first bracket takes always the complete number of
52 staves. The possibilities are @code{SystemStartBar},
53 @code{SystemStartBracket}, @code{SystemStartBrace}, and
54 @code{SystemStartSquare}.
55
56 "
57   doctitle = "Nesting staves"
58 } % begin verbatim
59
60 \new StaffGroup
61 \relative c'' <<
62   \set StaffGroup.systemStartDelimiterHierarchy
63     = #'(SystemStartSquare (SystemStartBrace (SystemStartBracket a
64                              (SystemStartSquare b)  ) c ) d)
65   \new Staff { c1 }
66   \new Staff { c1 }
67   \new Staff { c1 }
68   \new Staff { c1 }
69   \new Staff { c1 }
70 >>
71