]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/mensurstriche-layout-bar-lines-between-the-staves.ly
2b4b5e21b2c63cabbedfca468930122ee95f31a2
[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.2"
8
9 \header {
10   lsrtags = "tweaks-and-overrides, contexts-and-engravers, staff-notation, ancient-notation"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
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
40 @qq{transparentes} 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
57 global = {
58   \override Staff.BarLine #'transparent = ##t
59   s1 s
60   % the final bar line is not interrupted
61   \revert Staff.BarLine #'transparent
62   \bar "|."
63 }
64 \new StaffGroup \relative c'' {
65   <<
66     \new Staff { << \global { c1 c } >> }
67     \new Staff { << \global { c c } >> }
68   >>
69 }
70