]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/use-square-bracket-at-the-start-of-a-staff-group.ly
Merge branch 'master' of git://git.savannah.gnu.org/lilypond.git
[lilypond.git] / Documentation / snippets / use-square-bracket-at-the-start-of-a-staff-group.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.0"
8
9 \header {
10   lsrtags = "staff-notation, contexts-and-engravers"
11
12 %% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
13   texidoces = "
14 Se puede usar el delimitador de comienzo de un sistema
15 @code{SystemStartSquare} estableciéndolo explícitamente dentro de
16 un contexto @code{StaffGroup} o @code{ChoirStaffGroup}.
17
18 "
19   doctitlees = "Uso del corchete recto al comienzo de un grupo de pentagramas"
20
21
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23   texidocde = "
24 Die Klammer zu Beginn von Systemgruppen kann auch in eine eckige Klammer
25 (@code{SystemStartSquare}) umgewandelt werden, wenn man sie explizit
26 im @code{StaffGroup}- oder @code{ChoirStaffGroup}-Kontext setzt.
27
28 "
29   doctitlede = "Eine eckige Klammer zu Beginn von Systemgruppen benutzen"
30
31 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
32   texidocfr = "
33 Un regroupement de portées sera indiqué par un simple rectangle
34 -- @code{SystemStartSquare} -- en début de ligne dès lors que vous le
35 mentionnerez explicitement au sein d'un contexte @code{StaffGroup} ou
36 @code{ChoirStaffGroup}.
37
38 "
39   doctitlefr = "Indication de regroupement de portées par un rectangle"
40
41
42   texidoc = "
43 The system start delimiter @code{SystemStartSquare} can be used by
44 setting it explicitly in a @code{StaffGroup} or @code{ChoirStaff}
45 context.
46
47 "
48   doctitle = "Use square bracket at the start of a staff group"
49 } % begin verbatim
50
51 \score {
52   \new StaffGroup { <<
53   \set StaffGroup.systemStartDelimiter = #'SystemStartSquare
54     \new Staff { c'4 d' e' f' }
55     \new Staff { c'4 d' e' f' }
56   >> }
57 }
58