]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/removing-connecting-bar-lines-on-staffgroup,-pianostaff,-or-grandstaff.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / removing-connecting-bar-lines-on-staffgroup,-pianostaff,-or-grandstaff.ly
index 25e71a4826235ebae927af7f260e817866ae0d9b..fd0fdce66220359594db3d42c0b52dd51d44c54e 100644 (file)
@@ -4,32 +4,10 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.2"
+\version "2.17.6"
 
 \header {
-%% Translation of GIT committish: 28097cf54698db364afeb75658e4c8e0e0ccd716
-  texidocfr = "
-Les barres de mesure des regroupements @code{StaffGroup},
-@code{PianoStaff} et @code{GrandStaff} sont par défaut d'un seul tenant.
-La portion entre les portées peut néanmoins être supprimée, portée par
-portée.
-
-"
-  doctitlefr = "Suppression de la partie inter-portée des barres de mesure d'un regroupement autre que ChoirStaff"
-
-  lsrtags = "tweaks-and-overrides, rhythms"
-
-
-%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
-  texidoces = "
-De forma predeterminada, las líneas divisorias en los grupos
-StaffGroup, PianoStaff o GrandStaff se conectan entre los pentagramas.
-Se puede alterar este comportamiento pentagrama a pentagrama.
-
-"
-  doctitlees = "Quitar las barras de compás entre los pentagramas de un StaffGroup PianoStaff o GrandStaff"
-
-
+  lsrtags = "rhythms, tweaks-and-overrides"
 
   texidoc = "
 By default, bar lines in StaffGroup, PianoStaff, or GrandStaff groups
@@ -45,12 +23,12 @@ a staff-by-staff basis.
   \new StaffGroup <<
     \new Staff {
       e1 | e
-      \once \override Staff.BarLine #'allow-span-bar = ##f
+      \once \override Staff.BarLine.allow-span-bar = ##f
       e1 | e | e
     }
     \new Staff {
       c1 | c | c
-      \once \override Staff.BarLine #'allow-span-bar = ##f
+      \once \override Staff.BarLine.allow-span-bar = ##f
       c1 | c
     }
     \new Staff {
@@ -58,4 +36,3 @@ a staff-by-staff basis.
     }
   >>
 }
-