]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/caesura-railtracks-with-fermata.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / caesura-railtracks-with-fermata.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.16.0"
8
9 \header {
10   lsrtags = "expressive-marks, symbols-and-glyphs, tweaks-and-overrides"
11
12   texidoc = "
13 A caesura is sometimes denoted by a double @qq{railtracks} breath mark
14 with a fermata sign positioned above. This snippet shows an optically
15 pleasing combination of railtracks and fermata.
16
17 "
18   doctitle = "Caesura (\"railtracks\") with fermata"
19 } % begin verbatim
20
21
22 \relative c'' {
23   c2.
24   % construct the symbol
25   \override BreathingSign #'text = \markup {
26     \line {
27       \musicglyph #"scripts.caesura.curved"
28       \translate #'(-1.75 . 1.6)
29       \musicglyph #"scripts.ufermata"
30     }
31   }
32   \breathe c4
33   % set the breathe mark back to normal
34   \revert BreathingSign #'text
35   c2. \breathe c4
36   \bar "|."
37 }