]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/caesura-railtracks-with-fermata.ly
LSR: Update.
[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.48"
4
5 \header {
6   lsrtags = "expressive-marks, tweaks-and-overrides"
7
8   texidoc = "
9 A caesura is sometimes denoted with a double \"railtracks\" breath mark
10 with a fermata sign positioned above. This snippet should present an
11 optically pleasing combination of railtracks and a fermata.
12
13 "
14   doctitle = "Caesura (\"railtracks\") with fermata"
15 } % begin verbatim
16 {
17   c''2.
18   % construct the symbol
19   \override BreathingSign #'text = \markup {
20     \line {
21       \musicglyph #"scripts.caesura.curved"
22       \translate #'(-1.75 . 1.6)
23       \musicglyph #"scripts.ufermata"
24     }
25   }
26   \breathe c''4
27   % set the breathe mark back to normal
28   \revert BreathingSign #'text
29   c''2. \breathe c''4
30   \bar "|."
31 }