X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fbreathing-sign.ly;h=181a67656d341bf7b553efaf474f8b7c609ad93e;hb=62c17794416d17166e69770e08fc391132054df1;hp=21df0be4153ac1ca280e19dd42be9713082d8f9c;hpb=9c31b0d42a407a412a324a6586cfb0437de4bfd8;p=lilypond.git diff --git a/input/regression/breathing-sign.ly b/input/regression/breathing-sign.ly index 21df0be415..181a67656d 100644 --- a/input/regression/breathing-sign.ly +++ b/input/regression/breathing-sign.ly @@ -1,58 +1,55 @@ -#(ly:set-option 'old-relative) -\version "2.1.36" +\version "2.11.51" \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'' { + \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 | + + %% 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 } } }