]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/caesura-railtracks-with-fermata.ly
Add '-dcrop' option to ps and svg backends
[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.di.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.18.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 \relative c'' {
22   c2.
23   % construct the symbol
24   \override BreathingSign.text = \markup {
25     \override #'(direction . 1)
26     \override #'(baseline-skip . 1.8)
27     \dir-column {
28       \translate #'(0.155 . 0)
29         \center-align \musicglyph #"scripts.caesura.curved"
30       \center-align \musicglyph #"scripts.ufermata"
31     }
32   }
33   \breathe c4
34   % set the breathe mark back to normal
35   \revert BreathingSign.text
36   c2. \breathe c4
37   \bar "|."
38 }