X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fcaesura-railtracks-with-fermata.ly;h=219fa11bf97c8a01566fbe5ff5263bfa7451bc02;hb=730d4eb3e0328e8ba0b376f8191a5bb6ae7f904c;hp=064c04eeb5c2dfcdfc47f41c37808c54662156d7;hpb=2940cdd12c135ef94e4c95ac815e76014eef9c79;p=lilypond.git diff --git a/Documentation/snippets/caesura-railtracks-with-fermata.ly b/Documentation/snippets/caesura-railtracks-with-fermata.ly index 064c04eeb5..219fa11bf9 100644 --- a/Documentation/snippets/caesura-railtracks-with-fermata.ly +++ b/Documentation/snippets/caesura-railtracks-with-fermata.ly @@ -1,23 +1,13 @@ %% 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.0" +\version "2.18.0" \header { - lsrtags = "expressive-marks, tweaks-and-overrides" - -%% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d - 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 @@ -31,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 "|." }