]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/caesura-railtracks-with-fermata.ly
Merge branch 'master' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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 over the top of the railtracks. This
11 snippet should present an optically pleasing combination of railtracks
12 and a fermata.
13
14 "
15   doctitle = "Caesura (\"railtracks\") with fermata"
16 } % begin verbatim
17 {
18   c''2.
19   % construct the symbol
20   \override BreathingSign #'text = \markup {
21     \line {
22       \musicglyph #"scripts.caesura.curved" \translate #'(-1.75 . 1.6) \musicglyph #"scripts.ufermata"
23     }
24   }
25   \breathe c''4
26   % set the breathe mark back to normal
27   \revert BreathingSign #'text
28   c''2. \breathe c''4
29   \bar "|."
30 }