]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/nesting-staves.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / nesting-staves.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.11.62"
4
5 \header {
6   lsrtags = "staff-notation, contexts-and-engravers, tweaks-and-overrides"
7
8   texidoces = "
9 Se puede utilizar la propiedad
10 @code{systemStartDelimiterHierarchy} para crear grupos de
11 pentagramas anidados de forma más compleja. La instrucción
12 @code{\\set StaffGroup.systemStartDelimiterHierarchy} toma una
13 lista alfabética del número de pentagramas producidos. Se puede
14 proporcionar antes de cada pentagrama un delimitador de comienzo
15 de sistema. Se debe encerrar entre corchetes y admite tantos
16 pentagramas como encierren las llaves. Se pueden omitir los
17 elementos de la lista, pero el primer corchete siempre abarca
18 todos los pentagramas. Las posibilidades son
19 @code{SystemStartBar}, @code{SystemStartBracket},
20 @code{SystemStartBrace} y @code{SystemStartSquare}.
21
22 "
23   doctitlees = "Anidado de grupos de pentagramas"
24
25   texidoc = "
26 The property @code{systemStartDelimiterHierarchy} can be used to make
27 more complex nested staff groups. The command @code{\\set
28 StaffGroup.systemStartDelimiterHierarchy} takes an alphabetical list of
29 the number of staves produced. Before each staff a system start
30 delimiter can be given. It has to be enclosed in brackets and takes as
31 much staves as the brackets enclose. Elements in the list can be
32 omitted, but the first bracket takes always the complete number of
33 staves. The possibilities are @code{SystemStartBar},
34 @code{SystemStartBracket}, @code{SystemStartBrace}, and
35 @code{SystemStartSquare}.
36
37 "
38   doctitle = "Nesting staves"
39 } % begin verbatim
40 \new StaffGroup
41 \relative c'' <<
42   \set StaffGroup.systemStartDelimiterHierarchy
43     = #'(SystemStartSquare (SystemStartBrace (SystemStartBracket a
44                              (SystemStartSquare b)  ) c ) d)
45   \new Staff { c1 }
46   \new Staff { c1 }
47   \new Staff { c1 }
48   \new Staff { c1 }
49   \new Staff { c1 }
50 >>