]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/mensurstriche-layout-bar-lines-between-the-staves.ly
9fead66c9806aa211bf93242b61d4153de2e7b7b
[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: 00ef2ac3dd16e21c9ffdffaa4d6d043a3f1a76e6
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
22 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
23   texidocde = "
24 Das Mensurstiche-Layout, in welchem die Taktlinien nicht auf den Systemen,
25 sondern zwischen den Systemen gesetzt werden, kann mit einer @code{StaffGroup}
26 anstelle von @code{ChoirStaff} erreicht werden.  Die Taktlinien auf den
27 Systemen werden mit der the @code{transparent}-Eigenschaft ausgelöscht.
28
29 "
30   doctitlede = "Mensurstriche-Layout (Taktstriche zwischen den Systemen"
31
32 %% Translation of GIT committish: d78027a94928ddcdd18fd6534cbe6d719f80b6e6
33   texidocfr = "
34 En musique mensurale, les barres de mesure ne traversent pas les
35 portées.  Pour obtenir ce résultat avec un @code{StaffGroup} plutôt
36 qu'en utilisant un @code{ChoirStaff}, il faudra rendre « transparentes »
37 les portions de barre qui recouvrent les portées.
38
39 "
40   doctitlefr = "Présentation à l'ancienne (barres de mesure entre les portées)"
41
42
43   texidoc = "
44 The mensurstriche-layout where the bar lines do not show on the staves
45 but between staves can be achieved with a @code{StaffGroup} instead of
46 a @code{ChoirStaff}.  The bar line on staves is blanked out by setting
47 the @code{transparent} property.
48
49 "
50   doctitle = "Mensurstriche layout (bar lines between the staves)"
51 } % begin verbatim
52
53 global = {
54   \override Staff.BarLine #'transparent = ##t
55   s1 s
56   % the final bar line is not interrupted
57   \revert Staff.BarLine #'transparent
58   \bar "|."
59 }
60 \new StaffGroup \relative c'' {
61   <<
62     \new Staff { << \global { c1 c } >> }
63     \new Staff { << \global { c c } >> }
64   >>
65 }
66