]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/breathing-sign-ancient.ly
Issue 4204: Convert ly::time-signature::print from C++ to Scheme.
[lilypond.git] / input / regression / breathing-sign-ancient.ly
index eadf3337a5cbc1b4184894d409bd6d9b723522b7..8e1a528753d73ec8b2f049e0db61187d2c9ecc04 100644 (file)
@@ -1,15 +1,14 @@
-\version "2.10.0"
+\version "2.17.6"
 
 \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-init.ly"
+\include "gregorian.ly"
 
 \context VaticanaStaff {
   \relative c' {
@@ -37,3 +36,63 @@ finalis, the latter three looking similar to bar glyphs.
     \finalis
   }
 }
+
+mus = \relative f' {
+  \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
+} }