]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/caesura-railtracks-with-fermata.ly
Docs: run convert-ly for 2.14.0.
[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.14.0"
8
9 \header {
10   lsrtags = "expressive-marks, tweaks-and-overrides"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13   texidoces = "
14 A veces se denota una «cesura» mediante una doble marca de respiración
15 parecida a las vías del tren, con un calderón encima. Este fragmento
16 de código presenta una combinación visualmente satisfactoria de estas
17 dos marcas.
18
19 "
20   doctitlees = "Cesura tipo \"vías del tren\" con calderón"
21
22   texidoc = "
23 A caesura is sometimes denoted by a double @qq{railtracks} breath mark
24 with a fermata sign positioned above. This snippet shows an optically
25 pleasing combination of railtracks and fermata.
26
27 "
28   doctitle = "Caesura (\"railtracks\") with fermata"
29 } % begin verbatim
30
31 \relative c'' {
32   c2.
33   % construct the symbol
34   \override BreathingSign #'text = \markup {
35     \line {
36       \musicglyph #"scripts.caesura.curved"
37       \translate #'(-1.75 . 1.6)
38       \musicglyph #"scripts.ufermata"
39     }
40   }
41   \breathe c4
42   % set the breathe mark back to normal
43   \revert BreathingSign #'text
44   c2. \breathe c4
45   \bar "|."
46 }