]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/caesura-railtracks-with-fermata.ly
Merge branch 'translation' into staging
[lilypond.git] / Documentation / snippets / caesura-railtracks-with-fermata.ly
index f70e7b15352435d99d28ee5c78afccb449940745..c42000b8af319116f9f75fd2a88ca33a8a02e01a 100644 (file)
@@ -4,20 +4,10 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.0"
+\version "2.17.6"
 
 \header {
-  lsrtags = "expressive-marks, tweaks-and-overrides"
-
-%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
-  texidoces = "
-A veces se denota una «cesura» mediante una doble marca de respiración
-parecida a las vías del tren, con un calderón encima. Este fragmento
-de código presenta una combinación visualmente satisfactoria de estas
-dos marcas.
-
-"
-  doctitlees = "Cesura tipo \"vías del tren\" con calderón"
+  lsrtags = "expressive-marks, symbols-and-glyphs, tweaks-and-overrides"
 
   texidoc = "
 A caesura is sometimes denoted by a double @qq{railtracks} breath mark
@@ -28,10 +18,11 @@ pleasing combination of railtracks and fermata.
   doctitle = "Caesura (\"railtracks\") with fermata"
 } % begin verbatim
 
+
 \relative c'' {
   c2.
   % construct the symbol
-  \override BreathingSign #'text = \markup {
+  \override BreathingSign.text = \markup {
     \line {
       \musicglyph #"scripts.caesura.curved"
       \translate #'(-1.75 . 1.6)
@@ -40,7 +31,7 @@ pleasing combination of railtracks and fermata.
   }
   \breathe c4
   % set the breathe mark back to normal
-  \revert BreathingSign #'text
+  \revert BreathingSign.text
   c2. \breathe c4
   \bar "|."
 }