X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fbreathing-sign-ancient.ly;h=e2b2892e0322df318abb1d9650a1c0d148c1dcc0;hb=1042d072743886aea80ed31f0979e26f652c202f;hp=f96a4e4219555659d4075338f71679a949374951;hpb=5956be580d291c1460f1c4b5f6e4a1c3e6549602;p=lilypond.git diff --git a/input/regression/breathing-sign-ancient.ly b/input/regression/breathing-sign-ancient.ly index f96a4e4219..e2b2892e03 100644 --- a/input/regression/breathing-sign-ancient.ly +++ b/input/regression/breathing-sign-ancient.ly @@ -1,7 +1,7 @@ -\version "2.3.16" +\version "2.11.51" \header{ -texidoc=" + texidoc=" Gregorian chant notation sometimes also uses commas and ticks, but in smaller font size (we call it 'virgula' and 'caesura'). However, the most common breathing signs are divisio minima/maior/maxima and @@ -9,42 +9,31 @@ finalis, the latter three looking similar to bar glyphs. " } -\include "gregorian-init.ly" +\include "gregorian.ly" -\score { +\context VaticanaStaff { + \relative c' { + % here is no \breathe + c g c - % - % Gregorian notation: - % - \context VaticanaStaff { - \relative c' { + % \virgula applies rcomma, but in a smaller font + c \virgula g c - % we turn bars and bar numbers off for Gregorian stuff - \override Staff.BarLine #'transparent = ##t - \override Score.BarNumber #'transparent = ##t + % \caesura applies rvarcomma, but in a smaller font + c \caesura g c - % here is no \breathe - c g c + % \divisioMinima is a simple vertical stroke through the + % uppermost staffline, just like the original implementation + % of breathing signs. + c \divisioMinima g c - % \virgula applies rcomma, but in a smaller font - c \virgula g c + % \divisioMaior, \divisioMaxima and \finalis look like bars and + % are vertically centered on the staff; the direction property + % has no effect + c \divisioMaior g c + c \divisioMaxima g c - % \caesura applies rvarcomma, but in a smaller font - c \caesura g c - - % \divisioMinima is a simple vertical stroke through the - % uppermost staffline, just like the original implementation - % of breathing signs. - c \divisioMinima g c - - % \divisio{maior,maxima} and \finalis look like bars and are - % vertically centered on the staff; the direction property has - % no effect - c \divisioMaior g c - c \divisioMaxima g c - - % this one looks almost like a "||" type bar - \finalis - } - } + % this one looks almost like a "||" type bar + \finalis + } }