]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/caesura-railtracks-with-fermata.ly
Merge branch 'master' of git://git.sv.gnu.org/lilypond
[lilypond.git] / input / lsr / caesura-railtracks-with-fermata.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 %% Tags: expressive-marks, tweaks-and-overrides
4 \version "2.11.35"
5
6 \header { texidoc = "
7 A caesura is sometimes denoted with a double \"railtracks\" breath mark
8 with a fermata sign positioned over the top of the railtracks. This
9 snippet should present an optically pleasing combination of railtracks
10 and a fermata.
11 " }
12 % begin verbatim
13 {
14   \context Voice {
15     c''2.
16     % use some scheme code to construct the symbol
17     \override BreathingSign #'text = #(markup #:line 
18                                   (#:musicglyph "scripts.caesura.curved"
19                                    #:translate (cons -1.75 1.6) 
20                                    #:musicglyph "scripts.ufermata"
21                                   ))
22     \breathe c''4
23     % set the breathe mark back to normal
24     \revert BreathingSign #'text
25     c''2. \breathe c''4
26     \bar "|."
27   }
28 }
29