X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fbreathing-sign.ly;h=dd425c17577f00542b5737353de6807d0a6ab103;hb=ccc485525e63f68623bce1c3ca7a2d4fb6e94499;hp=70e375fe7a11ce41895ddfc13fa86da10846b764;hpb=5d5ca8642dca9169ddf78949c41381e5f1380975;p=lilypond.git diff --git a/input/regression/breathing-sign.ly b/input/regression/breathing-sign.ly index 70e375fe7a..dd425c1757 100644 --- a/input/regression/breathing-sign.ly +++ b/input/regression/breathing-sign.ly @@ -1,27 +1,43 @@ +\version "2.14.0" \header{ -texidoc=" -Breathing signs, also used for phrasing, do normally not influence -global spacing -- only if space gets tight, notes are shifted to make -room for the breathing sign. Breathing signs break beams running -through their voice. In the following example, the notes in the first -two measures all have the same distance from each other: -"; + texidoc=" +Breathing signs are available in different tastes: commas (default), +ticks, vees and `railroad tracks' (caesura)." } -\version "1.3.117"; +{ + %% Modern notation: + \new Staff { + \relative c'' { + %% by default, \breathe uses the rcomma, just as if saying: + %% \override BreathingSign #'text = + %% #(make-musicglyph-markup "scripts.rcomma") + %% + c4 c \breathe c c | -\score { - \notes \relative c' { - \key es \major; \time 3/4; - < \context Voice = two { \stemDown es4 bes es } - \context Voice = one { \stemUp g4 as g } - > | - < \context Voice = two { \stemDown es4 \breathe bes es } - \context Voice = one { \stemUp g4 as g } - > | - es8 d es f g4 \breathe | - es8 d \breathe es f g f | - es2 r4 \bar "||"; + %% rvarcomma and lvarcomma are variations of the default rcomma + %% and lcomma + %% + \override Staff.BreathingSign #'text = + #(make-musicglyph-markup "scripts.rvarcomma") + c4 c \breathe c c | + + %% wedge + %% + \override BreathingSign #'text = + #(make-musicglyph-markup "scripts.upbow") + c4 c \breathe c c | + + %% caesurae + %% + \override BreathingSign #'text = + #(make-musicglyph-markup "scripts.caesura.curved") + c4 c \breathe c c | + + \override BreathingSign #'text = + #(make-musicglyph-markup "scripts.caesura.straight") + c4 c \breathe c c | + } } }