]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/caesura-railtracks-with-fermata.ly
Merge master into nested-bookparts
[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.11.62"
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 with a double \"railtracks\" breath mark
19 with a fermata sign positioned above. This snippet should present an
20 optically pleasing combination of railtracks and a fermata.
21
22 "
23   doctitle = "Caesura (\"railtracks\") with fermata"
24 } % begin verbatim
25 {
26   c''2.
27   % construct the symbol
28   \override BreathingSign #'text = \markup {
29     \line {
30       \musicglyph #"scripts.caesura.curved"
31       \translate #'(-1.75 . 1.6)
32       \musicglyph #"scripts.ufermata"
33     }
34   }
35   \breathe c''4
36   % set the breathe mark back to normal
37   \revert BreathingSign #'text
38   c''2. \breathe c''4
39   \bar "|."
40 }