]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/breathing-sign.ly
MusicXML: src-dir rather than srcdir.
[lilypond.git] / input / regression / breathing-sign.ly
1 \version "2.11.51"
2 \header{
3   texidoc="
4 Breathing signs are available in different tastes: commas (default),
5 ticks, vees and `railroad tracks' (caesura)."
6 }
7
8
9 {
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")
16       %%
17       c4 c \breathe c c |
18
19       %% rvarcomma and lvarcomma are variations of the default rcomma
20       %% and lcomma
21       %%
22       \override Staff.BreathingSign #'text =
23         #(make-musicglyph-markup "scripts.rvarcomma")
24       c4 c \breathe c c |
25
26       %% wedge
27       %%
28       \override BreathingSign #'text =
29         #(make-musicglyph-markup "scripts.upbow")
30       c4 c \breathe c c |
31
32       %% caesurae
33       %%
34       \override BreathingSign #'text =
35         #(make-musicglyph-markup "scripts.caesura.curved")
36       c4 c \breathe c c |
37
38       \override BreathingSign #'text =
39         #(make-musicglyph-markup "scripts.caesura.straight")
40       c4 c \breathe c c |
41     }
42   }
43 }