]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/caesura-railtracks-with-fermata.ly
Release: bump Welcome versions.
[lilypond.git] / Documentation / snippets / caesura-railtracks-with-fermata.ly
index 63e03d0f218883efd8ab5a6a44cfe7e1d6e684a7..219fa11bf97c8a01566fbe5ff5263bfa7451bc02 100644 (file)
@@ -1,20 +1,13 @@
-%% Do not edit this file; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.di.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
 %% This file is in the public domain.
-\version "2.13.16"
+\version "2.18.0"
 
 \header {
-  lsrtags = "expressive-marks, tweaks-and-overrides"
-
-%% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
-  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,16 +21,18 @@ pleasing combination of railtracks and fermata.
 \relative c'' {
   c2.
   % construct the symbol
-  \override BreathingSign #'text = \markup {
-    \line {
-      \musicglyph #"scripts.caesura.curved"
-      \translate #'(-1.75 . 1.6)
-      \musicglyph #"scripts.ufermata"
+  \override BreathingSign.text = \markup {
+    \override #'(direction . 1)
+    \override #'(baseline-skip . 1.8)
+    \dir-column {
+      \translate #'(0.155 . 0)
+        \center-align \musicglyph #"scripts.caesura.curved"
+      \center-align \musicglyph #"scripts.ufermata"
     }
   }
   \breathe c4
   % set the breathe mark back to normal
-  \revert BreathingSign #'text
+  \revert BreathingSign.text
   c2. \breathe c4
   \bar "|."
 }