X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fbreathing-sign.ly;h=f9e37878598fdf168876402d2e16737f5efdd777;hb=c31ee4f97786151cdc92d2d45e2b759eb54cd5fd;hp=9a0fa00e553e2214610c656a172515c4e74d8070;hpb=730c54a571ab3b6c30e02be5f93c876abee0f9a7;p=lilypond.git diff --git a/input/regression/breathing-sign.ly b/input/regression/breathing-sign.ly index 9a0fa00e55..f9e3787859 100644 --- a/input/regression/breathing-sign.ly +++ b/input/regression/breathing-sign.ly @@ -1,4 +1,4 @@ -\version "2.10.0" +\version "2.17.6" \header{ texidoc=" Breathing signs are available in different tastes: commas (default), @@ -10,43 +10,34 @@ ticks, vees and `railroad tracks' (caesura)." %% Modern notation: \new Staff { \relative c'' { - \key es \major \time 3/4 - - %% this bar contains no \breathe - << - { g4 as g } \\ - { es4 bes es } - >> | - %% by default, \breathe uses the rcomma, just as if saying: - %% \override BreathingSign #'text = - % #(make-musicglyph-markup "scripts.rcomma") - << - { g4 as g } \\ - { es4 \breathe bes es } - >> | + %% \override BreathingSign.text = + %% #(make-musicglyph-markup "scripts.rcomma") + %% + c4 c \breathe c c | %% rvarcomma and lvarcomma are variations of the default rcomma %% and lcomma - - %% N.B.: must use Staff context here, since we start a Voice below - \override Staff.BreathingSign #'text = - #(make-musicglyph-markup "scripts.rvarcomma") - << - { g4 as g } \\ - { es4 \breathe bes es } - >> | + %% + \override Staff.BreathingSign.text = + #(make-musicglyph-markup "scripts.rvarcomma") + c4 c \breathe c c | %% wedge - \override BreathingSign #'text = - #(make-musicglyph-markup "scripts.upbow") - es8 d es f g8 \breathe f | - - %% caesura - \override BreathingSign #'text = - #(make-musicglyph-markup "scripts.caesura") - es8[ d] \breathe es[ f g f] | - es2 r4 \bar "||" \break + %% + \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 | } } }