]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/caesura-railtracks-with-fermata.ly
LSR updates from tarball
[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 = "expressive-marks, tweaks-and-overrides, symbols-and-glyphs"
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 %% Translation of GIT committish: f5cfaf8ef4ac347702f554af0944ef0d8396e73a
23   texidocfr = "
24 Une césure peut parfois s'indiquer par une double respiration surmontée
25 d'un point d'orgue.  Le code ci-dessous permet d'obtenir la combinaison
26 répondant à cette esthétique.
27
28 "
29   doctitlefr = "Césure en forme de \"voie de chemin de fer\" avec point d'orgue"
30
31   texidoc = "
32 A caesura is sometimes denoted by a double @qq{railtracks} breath mark
33 with a fermata sign positioned above. This snippet shows an optically
34 pleasing combination of railtracks and fermata.
35
36 "
37   doctitle = "Caesura (\"railtracks\") with fermata"
38 } % begin verbatim
39
40
41 \relative c'' {
42   c2.
43   % construct the symbol
44   \override BreathingSign #'text = \markup {
45     \line {
46       \musicglyph #"scripts.caesura.curved"
47       \translate #'(-1.75 . 1.6)
48       \musicglyph #"scripts.ufermata"
49     }
50   }
51   \breathe c4
52   % set the breathe mark back to normal
53   \revert BreathingSign #'text
54   c2. \breathe c4
55   \bar "|."
56 }