]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/caesura-railtracks-with-fermata.ly
Merge branch 'translation' into staging
[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 %% Translation of GIT committish: f5cfaf8ef4ac347702f554af0944ef0d8396e73a
11   texidocfr = "
12 Une césure peut parfois s'indiquer par une double respiration surmontée
13 d'un point d'orgue.  Le code ci-dessous permet d'obtenir la combinaison
14 répondant à cette esthétique.
15
16 "
17   doctitlefr = "Césure en forme de \"voie de chemin de fer\" avec point d'orgue"
18
19   lsrtags = "symbols-and-glyphs, tweaks-and-overrides, expressive-marks"
20
21
22 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
23   texidoces = "
24 A veces se denota una «cesura» mediante una doble marca de respiración
25 parecida a las vías del tren, con un calderón encima. Este fragmento
26 de código presenta una combinación visualmente satisfactoria de estas
27 dos marcas.
28
29 "
30   doctitlees = "Cesura tipo \"vías del tren\" con calderón"
31
32   texidoc = "
33 A caesura is sometimes denoted by a double @qq{railtracks} breath mark
34 with a fermata sign positioned above. This snippet shows an optically
35 pleasing combination of railtracks and fermata.
36
37 "
38   doctitle = "Caesura (\"railtracks\") with fermata"
39 } % begin verbatim
40
41
42 \relative c'' {
43   c2.
44   % construct the symbol
45   \override BreathingSign #'text = \markup {
46     \line {
47       \musicglyph #"scripts.caesura.curved"
48       \translate #'(-1.75 . 1.6)
49       \musicglyph #"scripts.ufermata"
50     }
51   }
52   \breathe c4
53   % set the breathe mark back to normal
54   \revert BreathingSign #'text
55   c2. \breathe c4
56   \bar "|."
57 }