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