X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fcaesura-railtracks-with-fermata.ly;h=219fa11bf97c8a01566fbe5ff5263bfa7451bc02;hb=10597764dc89ea9671e29771a78d799645ffa753;hp=30a684bca8c665f1b1b07d43350cc549728f8c3b;hpb=1242f5fca1063945967549d4f814afcac957d344;p=lilypond.git diff --git a/Documentation/snippets/caesura-railtracks-with-fermata.ly b/Documentation/snippets/caesura-railtracks-with-fermata.ly index 30a684bca8..219fa11bf9 100644 --- a/Documentation/snippets/caesura-railtracks-with-fermata.ly +++ b/Documentation/snippets/caesura-railtracks-with-fermata.ly @@ -1,33 +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.2" +\version "2.18.0" \header { -%% Translation of GIT committish: f5cfaf8ef4ac347702f554af0944ef0d8396e73a - texidocfr = " -Une césure peut parfois s'indiquer par une double respiration surmontée -d'un point d'orgue. Le code ci-dessous permet d'obtenir la combinaison -répondant à cette esthétique. - -" - doctitlefr = "Césure en forme de \"voie de chemin de fer\" avec point d'orgue" - - lsrtags = "symbols-and-glyphs, tweaks-and-overrides, expressive-marks" - - -%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa - 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 @@ -38,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 "|." }