]> 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 6262a39e9269b17a2ba517c62e1b9223375ebc2e..219fa11bf97c8a01566fbe5ff5263bfa7451bc02 100644 (file)
@@ -1,10 +1,10 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% 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.14.2"
+\version "2.18.0"
 
 \header {
   lsrtags = "expressive-marks, symbols-and-glyphs, tweaks-and-overrides"
@@ -18,20 +18,21 @@ pleasing combination of railtracks and fermata.
   doctitle = "Caesura (\"railtracks\") with fermata"
 } % begin verbatim
 
-
 \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 "|."
 }