X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fbreathing-sign.ly;h=763529a44cef5020d3debee2ea509c08059a37d7;hb=38d7d319eabc906e82fb42002678c6d42a23b6f7;hp=21df0be4153ac1ca280e19dd42be9713082d8f9c;hpb=9c31b0d42a407a412a324a6586cfb0437de4bfd8;p=lilypond.git diff --git a/input/regression/breathing-sign.ly b/input/regression/breathing-sign.ly index 21df0be415..763529a44c 100644 --- a/input/regression/breathing-sign.ly +++ b/input/regression/breathing-sign.ly @@ -1,58 +1,43 @@ -#(ly:set-option 'old-relative) -\version "2.1.36" +\version "2.12.0" \header{ -texidoc=" + texidoc=" Breathing signs are available in different tastes: commas (default), ticks, vees and `railroad tracks' (caesura)." - } - - -\score { - - { - % - % Modern notation: - % - \new Staff { - \notes \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 } - >> | - - % 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 } - >> | +} - % 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 - } +{ + %% 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 | + + %% 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 | } } }