X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fbreathing-sign.ly;h=dd425c17577f00542b5737353de6807d0a6ab103;hb=37b502a6f5030f9801a070f3aa68be08b4024350;hp=181a67656d341bf7b553efaf474f8b7c609ad93e;hpb=6d910958ea621e4ab878a118bd77e61ae210a6ef;p=lilypond.git diff --git a/input/regression/breathing-sign.ly b/input/regression/breathing-sign.ly index 181a67656d..dd425c1757 100644 --- a/input/regression/breathing-sign.ly +++ b/input/regression/breathing-sign.ly @@ -1,4 +1,4 @@ -\version "2.11.51" +\version "2.14.0" \header{ texidoc=" Breathing signs are available in different tastes: commas (default), @@ -10,46 +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 | + %% + \override BreathingSign #'text = + #(make-musicglyph-markup "scripts.upbow") + c4 c \breathe c c | %% caesurae - \override BreathingSign #'text = - #(make-musicglyph-markup "scripts.caesura.curved.curved") - es8[ d] \breathe - \override BreathingSign #'text = - #(make-musicglyph-markup "scripts.caesura.curved.straight") - es[ f] \breathe g[ f] | - es2 r4 \bar "||" \break + %% + \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 | } } }