]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/mensurstriche-layout-bar-lines-between-the-staves.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / mensurstriche-layout-bar-lines-between-the-staves.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, ancient-notation, contexts-and-engravers, tweaks-and-overrides"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13   texidoces = "
14 La disposición «mensurstriche» en que las líneas divisorias no
15 están dibujadas sobre los pentagramas, sino entre ellos, se puede
16 conseguir con un @code{StaffGroup} en vez de un @code{ChoirStaff}.
17 La línea divisoria sobre los pentagramas se borra estableciendo la
18 propiedad @code{transparent}.
19
20 "
21
22   doctitlees = "Disposición Mensurstriche (líneas divisorias entre pentagramas)"
23
24
25 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
26   texidocde = "
27 Das Mensurstiche-Layout, in welchem die Taktlinien nicht auf den Systemen,
28 sondern zwischen den Systemen gesetzt werden, kann mit einer @code{StaffGroup}
29 anstelle von @code{ChoirStaff} erreicht werden.  Die Taktlinien auf den
30 Systemen werden mit der @code{transparent}-Eigenschaft ausgelöscht.
31
32 "
33   doctitlede = "Mensurstriche-Layout (Taktstriche zwischen den Systemen"
34
35 %% Translation of GIT committish: 99dc90bbc369722cf4d3bb9f30b7288762f2167f6
36   texidocfr = "
37 En musique mensurale, les barres de mesure ne traversent pas les
38 portées.  Pour obtenir ce résultat avec un @code{StaffGroup} plutôt
39 qu'en utilisant un @code{ChoirStaff}, il faudra rendre « transparentes »
40 les portions de barre qui recouvrent les portées.
41
42 "
43   doctitlefr = "Présentation à l'ancienne (barres de mesure entre les portées)"
44
45
46   texidoc = "
47 The mensurstriche-layout where the bar lines do not show on the staves
48 but between staves can be achieved with a @code{StaffGroup} instead of
49 a @code{ChoirStaff}.  The bar line on staves is blanked out by setting
50 the @code{transparent} property.
51
52 "
53   doctitle = "Mensurstriche layout (bar lines between the staves)"
54 } % begin verbatim
55
56 global = {
57   \override Staff.BarLine #'transparent = ##t
58   s1 s
59   % the final bar line is not interrupted
60   \revert Staff.BarLine #'transparent
61   \bar "|."
62 }
63 \new StaffGroup \relative c'' {
64   <<
65     \new Staff { << \global { c1 c } >> }
66     \new Staff { << \global { c c } >> }
67   >>
68 }
69