]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/use-square-bracket-at-the-start-of-a-staff-group.ly
Doc: Update LSR.
[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.16"
5
6 \header {
7   lsrtags = "staff-notation, contexts-and-engravers"
8
9 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
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 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
19   texidocde = "
20 Die Klammer zu Beginn von Systemgruppen kann auch in eine eckige Klammer
21 (@code{SystemStartSquare}) umgewandelt werden, wenn man sie explizit
22 im @code{StaffGroup}- oder @code{ChoirStaffGroup}-Kontext setzt.
23
24 "
25   doctitlede = "Eine eckige Klammer zu Beginn von Systemgruppen benutzen"
26 %% Translation of GIT committish: 99dc90bbc369722cf4d3bb9f30b7288762f2167f6
27   texidocfr = "
28 Un regroupement de portées sera indiqué par un simple rectangle
29 -- @code{SystemStartSquare} -- en début de ligne dès lors que vous le
30 mentionnerez explicitement au sein d'un contexte @code{StaffGroup} ou
31 @code{ChoirStaffGroup}. 
32
33 "
34   doctitlefr = "Indication de regroupement de portées par un rectangle"
35
36
37   texidoc = "
38 The system start delimiter @code{SystemStartSquare} can be used by
39 setting it explicitly in a @code{StaffGroup} or @code{ChoirStaffGroup}
40 context.
41
42 "
43   doctitle = "Use square bracket at the start of a staff group"
44 } % begin verbatim
45
46 \score {
47   \new StaffGroup { <<
48   \set StaffGroup.systemStartDelimiter = #'SystemStartSquare
49     \new Staff { c'4 d' e' f' }
50     \new Staff { c'4 d' e' f' }
51   >> }
52 }
53