OLD | NEW |
1 \version "2.16.0" | 1 \version "2.17.6" |
2 \header{ | 2 \header{ |
3 texidoc=" | 3 texidoc=" |
4 Breathing signs are available in different tastes: commas (default), | 4 Breathing signs are available in different tastes: commas (default), |
5 ticks, vees and `railroad tracks' (caesura)." | 5 ticks, vees and `railroad tracks' (caesura)." |
6 } | 6 } |
7 | 7 |
8 | 8 |
9 { | 9 { |
10 %% Modern notation: | 10 %% Modern notation: |
11 \new Staff { | 11 \new Staff { |
12 \relative c'' { | 12 \relative c'' { |
13 %% by default, \breathe uses the rcomma, just as if saying: | 13 %% by default, \breathe uses the rcomma, just as if saying: |
14 %% \override BreathingSign #'text = | 14 %% \override BreathingSign.text = |
15 %% #(make-musicglyph-markup "scripts.rcomma") | 15 %% #(make-musicglyph-markup "scripts.rcomma") |
16 %% | 16 %% |
17 c4 c \breathe c c | | 17 c4 c \breathe c c | |
18 | 18 |
19 %% rvarcomma and lvarcomma are variations of the default rcomma | 19 %% rvarcomma and lvarcomma are variations of the default rcomma |
20 %% and lcomma | 20 %% and lcomma |
21 %% | 21 %% |
22 \override Staff.BreathingSign #'text = | 22 \override Staff.BreathingSign.text = |
23 #(make-musicglyph-markup "scripts.rvarcomma") | 23 #(make-musicglyph-markup "scripts.rvarcomma") |
24 c4 c \breathe c c | | 24 c4 c \breathe c c | |
25 | 25 |
26 %% wedge | 26 %% wedge |
27 %% | 27 %% |
28 \override BreathingSign #'text = | 28 \override BreathingSign.text = |
29 #(make-musicglyph-markup "scripts.upbow") | 29 #(make-musicglyph-markup "scripts.upbow") |
30 c4 c \breathe c c | | 30 c4 c \breathe c c | |
31 | 31 |
32 %% caesurae | 32 %% caesurae |
33 %% | 33 %% |
34 \override BreathingSign #'text = | 34 \override BreathingSign.text = |
35 #(make-musicglyph-markup "scripts.caesura.curved") | 35 #(make-musicglyph-markup "scripts.caesura.curved") |
36 c4 c \breathe c c | | 36 c4 c \breathe c c | |
37 | 37 |
38 \override BreathingSign #'text = | 38 \override BreathingSign.text = |
39 #(make-musicglyph-markup "scripts.caesura.straight") | 39 #(make-musicglyph-markup "scripts.caesura.straight") |
40 c4 c \breathe c c | | 40 c4 c \breathe c c | |
41 } | 41 } |
42 } | 42 } |
43 } | 43 } |
OLD | NEW |