]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/caesura-railtracks-with-fermata.ly
Merge commit 'ce4b499'
[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 \version "2.11.38"
4
5 \header {
6   lsrtags = "expressive-marks, tweaks-and-overrides"
7  texidoc = "
8 A caesura is sometimes denoted with a double \"railtracks\" breath mark
9 with a fermata sign positioned over the top of the railtracks. This
10 snippet should present an optically pleasing combination of railtracks
11 and a fermata.
12 " }
13 % begin verbatim
14 {
15   \context Voice {
16     c''2.
17     % use some scheme code to construct the symbol
18     \override BreathingSign #'text = #(markup #:line 
19                                   (#:musicglyph "scripts.caesura.curved"
20                                    #:translate (cons -1.75 1.6) 
21                                    #:musicglyph "scripts.ufermata"
22                                   ))
23     \breathe c''4
24     % set the breathe mark back to normal
25     \revert BreathingSign #'text
26     c''2. \breathe c''4
27     \bar "|."
28   }
29 }
30