]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/use-square-bracket-at-the-start-of-a-staff-group.ly
0ae477c5c53337b45c293768a34ac32915618326
[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.39"
5
6 \header {
7   lsrtags = "staff-notation, contexts-and-engravers"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
29   texidocfr = "
30 Un regroupement de portées sera indiqué par un simple rectangle
31 -- @code{SystemStartSquare} -- en début de ligne dès lors que vous le
32 mentionnerez explicitement au sein d'un contexte @code{StaffGroup} ou
33 @code{ChoirStaffGroup}.
34
35 "
36   doctitlefr = "Indication de regroupement de portées par un rectangle"
37
38
39   texidoc = "
40 The system start delimiter @code{SystemStartSquare} can be used by
41 setting it explicitly in a @code{StaffGroup} or @code{ChoirStaffGroup}
42 context.
43
44 "
45   doctitle = "Use square bracket at the start of a staff group"
46 } % begin verbatim
47
48 \score {
49   \new StaffGroup { <<
50   \set StaffGroup.systemStartDelimiter = #'SystemStartSquare
51     \new Staff { c'4 d' e' f' }
52     \new Staff { c'4 d' e' f' }
53   >> }
54 }
55