]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-indicators-to-staves-which-get-split-after-a-break.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / adding-indicators-to-staves-which-get-split-after-a-break.ly
index c0874dc84f70668c8839a281a0ef8aec71b3fd17..80df7dc6d0539e8beb736e61b6737f1663db7fc4 100644 (file)
@@ -4,20 +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 {
-  lsrtags = "staff-notation, vocal-music, symbols-and-glyphs"
-
-%% Translation of GIT committish: 1cda7b7b8219cb97399b8e7b56c1115aaf82c002
-  texidocfr = "
-Dans cet extrait est définie la commande @code{\\splitStaffBarLine} qui
-ajoute une double flèche après la dernière barre de mesure d'une portée,
-indiquant par là que ses différentes voix disposeront de leur propre
-portée à la ligne suivante.
-
-"
-  doctitlefr = "Ajout d'indicateurs à une portée dédoublée après un saut de ligne"
+  lsrtags = "staff-notation, symbols-and-glyphs, vocal-music"
 
   texidoc = "
 This snippet defines the @code{\\splitStaffBarLine} command, which adds
@@ -53,7 +43,7 @@ splitStaffBarLineMarkup = \markup \with-dimensions #'(0 . 0) #'(0 . 0) {
 }
 
 splitStaffBarLine = {
-  \once \override Staff.BarLine #'stencil =
+  \once \override Staff.BarLine.stencil =
     #(lambda (grob)
        (ly:stencil-combine-at-edge
         (ly:bar-line::print grob)
@@ -108,8 +98,7 @@ splitStaffBarLine = {
   \layout {
     \context {
       \Staff \RemoveEmptyStaves
-      \override VerticalAxisGroup #'remove-first = ##t
+      \override VerticalAxisGroup.remove-first = ##t
     }
   }
 }
-