]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/caesura-railtracks-with-fermata.ly
Doc: run makelsr locally
[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.2"
8
9 \header {
10   lsrtags = "symbols-and-glyphs, tweaks-and-overrides, expressive-marks"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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
32 \relative c'' {
33   c2.
34   % construct the symbol
35   \override BreathingSign #'text = \markup {
36     \line {
37       \musicglyph #"scripts.caesura.curved"
38       \translate #'(-1.75 . 1.6)
39       \musicglyph #"scripts.ufermata"
40     }
41   }
42   \breathe c4
43   % set the breathe mark back to normal
44   \revert BreathingSign #'text
45   c2. \breathe c4
46   \bar "|."
47 }