MIDI: fix regtest failure
[lilypond/patrick.git] / input / regression / breathing-sign.ly
blob763529a44cef5020d3debee2ea509c08059a37d7
1 \version "2.12.0"
2 \header{
3 texidoc="
4 Breathing signs are available in different tastes: commas (default),
5 ticks, vees and `railroad tracks' (caesura)."
10 %% Modern notation:
11 \new Staff {
12 \relative c'' {
13 %% by default, \breathe uses the rcomma, just as if saying:
14 %% \override BreathingSign #'text =
15 %% #(make-musicglyph-markup "scripts.rcomma")
17 c4 c \breathe c c |
19 %% rvarcomma and lvarcomma are variations of the default rcomma
20 %% and lcomma
22 \override Staff.BreathingSign #'text =
23 #(make-musicglyph-markup "scripts.rvarcomma")
24 c4 c \breathe c c |
26 %% wedge
28 \override BreathingSign #'text =
29 #(make-musicglyph-markup "scripts.upbow")
30 c4 c \breathe c c |
32 %% caesurae
34 \override BreathingSign #'text =
35 #(make-musicglyph-markup "scripts.caesura.curved")
36 c4 c \breathe c c |
38 \override BreathingSign #'text =
39 #(make-musicglyph-markup "scripts.caesura.straight")
40 c4 c \breathe c c |