X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fbreathing-sign-ancient.ly;h=e6ba1472e24f06e746026b5cb577f0a355ff740d;hb=5d84bfad4626892bcffd05adcced53c8a2329047;hp=3115d6a625fd42a068b0d7ef4006d6aeb97f0023;hpb=3bafaae8bf353619d2f97036e874f1c9cb787adf;p=lilypond.git diff --git a/input/regression/breathing-sign-ancient.ly b/input/regression/breathing-sign-ancient.ly index 3115d6a625..e6ba1472e2 100644 --- a/input/regression/breathing-sign-ancient.ly +++ b/input/regression/breathing-sign-ancient.ly @@ -1,20 +1,19 @@ -\version "2.12.0" +\version "2.19.21" \header{ 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 +smaller font size (we call it `virgula' and `caesura'). However, the +most common breathing signs are divisio minima/@/maior/@/maxima and finalis, the latter three looking similar to bar glyphs. - " } \include "gregorian.ly" \context VaticanaStaff { - \relative c' { + \relative { % here is no \breathe - c g c + c' g c % \virgula applies rcomma, but in a smaller font c \virgula g c @@ -37,3 +36,63 @@ finalis, the latter three looking similar to bar glyphs. \finalis } } + +mus = \relative { + \clef tenor + c' g c + c \virgula g c + c \caesura g c + c \divisioMinima g c + c \divisioMaior g c + c \divisioMaxima g c + \finalis +} + +\new Staff \with { + \remove Bar_engraver +} { + \context Voice \with { + \remove Stem_engraver + } { + \mus +} } + +\new Staff \with { + \override StaffSymbol.line-positions = #'(-2 0 2 4) + \remove Bar_engraver +} { + \context Voice \with { + \remove Stem_engraver + } { + \mus +} } + +\new Staff \with { + \override StaffSymbol.line-count = #6 + \remove Bar_engraver +} { + \context Voice \with { + \remove Stem_engraver + } { + \mus +} } + +\new Staff \with { + \override StaffSymbol.line-count = #2 + \remove Bar_engraver +} { + \context Voice \with { + \remove Stem_engraver + } { + \mus +} } + +\new Staff \with { + \override StaffSymbol.line-positions = #'(-4 -2 2 5) + \remove Bar_engraver +} { + \context Voice \with { + \remove Stem_engraver + } { + \mus +} }