]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/caesura-railtracks-with-fermata.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / Documentation / snippets / caesura-railtracks-with-fermata.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.39"
5
6 \header {
7   lsrtags = "expressive-marks, tweaks-and-overrides"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
10   texidoces = "
11 A veces se denota una «cesura» mediante una doble marca de respiración
12 parecida a las vías del tren, con un calderón encima. Este fragmento
13 de código presenta una combinación visualmente satisfactoria de estas
14 dos marcas.
15
16 "
17   doctitlees = "Cesura tipo \"vías del tren\" con calderón"
18
19   texidoc = "
20 A caesura is sometimes denoted by a double @qq{railtracks} breath mark
21 with a fermata sign positioned above. This snippet shows an optically
22 pleasing combination of railtracks and fermata.
23
24 "
25   doctitle = "Caesura (\"railtracks\") with fermata"
26 } % begin verbatim
27
28 \relative c'' {
29   c2.
30   % construct the symbol
31   \override BreathingSign #'text = \markup {
32     \line {
33       \musicglyph #"scripts.caesura.curved"
34       \translate #'(-1.75 . 1.6)
35       \musicglyph #"scripts.ufermata"
36     }
37   }
38   \breathe c4
39   % set the breathe mark back to normal
40   \revert BreathingSign #'text
41   c2. \breathe c4
42   \bar "|."
43 }