X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fcaesura-railtracks-with-fermata.ly;h=219fa11bf97c8a01566fbe5ff5263bfa7451bc02;hb=8cce5dd067a8a2bab508f5abebc3955db8837bbf;hp=00e979b8619be60873f12772f77827e252853ab3;hpb=1d589aa04c20d7711bf662618adbdd6d445db29d;p=lilypond.git diff --git a/Documentation/snippets/caesura-railtracks-with-fermata.ly b/Documentation/snippets/caesura-railtracks-with-fermata.ly index 00e979b861..219fa11bf9 100644 --- a/Documentation/snippets/caesura-railtracks-with-fermata.ly +++ b/Documentation/snippets/caesura-railtracks-with-fermata.ly @@ -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.10" +\version "2.18.0" \header { - lsrtags = "expressive-marks, tweaks-and-overrides" - -%% Translation of GIT committish: 45fc8488655f9ea122d1ec6e3328892618bd6971 - 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 "|." }