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