]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/caesura-railtracks-with-fermata.ly
Merge commit 'origin/dev/jneeman' into systems-per-page
[lilypond.git] / input / lsr / caesura-railtracks-with-fermata.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.0"
4
5 \header {
6   lsrtags = "expressive-marks, tweaks-and-overrides"
7
8   texidoces = "
9 A veces se denota una «cesura» con una doble marca de respiración
10 parecida a las vías del tren, con un calderón encima. Este
11 fragmento de código presenta una combinación de estas dos marcas,
12 visualmente satisfactoria.
13
14 "
15   doctitlees = "Cesura tipo \"vías del tren\" con calderón"
16
17   texidoc = "
18 A caesura is sometimes denoted by a double \"railtracks\" breath mark
19 with a fermata sign positioned above. This snippet should present an
20 optically pleasing combination of railtracks and fermata.
21
22 "
23   doctitle = "Caesura (\"railtracks\") with fermata"
24 } % begin verbatim
25
26 \relative c'' {
27   c2.
28   % construct the symbol
29   \override BreathingSign #'text = \markup {
30     \line {
31       \musicglyph #"scripts.caesura.curved"
32       \translate #'(-1.75 . 1.6)
33       \musicglyph #"scripts.ufermata"
34     }
35   }
36   \breathe c4
37   % set the breathe mark back to normal
38   \revert BreathingSign #'text
39   c2. \breathe c4
40   \bar "|."
41 }