]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/breathing-sign-ancient.ly
Issue 5148/2: three-sided-box snippet: use #:properties keyword
[lilypond.git] / input / regression / breathing-sign-ancient.ly
index 6a8bf73190df9cff95d0c2f4c496cd9d1c9c02dd..e6ba1472e24f06e746026b5cb577f0a355ff740d 100644 (file)
@@ -1,50 +1,98 @@
-\version "2.1.26"
+\version "2.19.21"
 
 \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
+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"
 
-\score {
+\context VaticanaStaff {
+  \relative {
+    % here is no \breathe
+    c' g c
 
-    %
-    % Gregorian notation:
-    %
-    \context VaticanaStaff {
-      \notes \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
+    % this one looks almost like a "||" type bar
+    \finalis
+  }
+}
 
-       % \divisioMinima is a simple vertical stroke through the
-       % uppermost staffline, just like the original implementation
-       % of breathing signs.
-       c \divisioMinima g c
+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
+}
 
-       % \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
+\new Staff \with {
+  \remove Bar_engraver
+} {
+  \context Voice \with {
+    \remove Stem_engraver
+  } {
+    \mus
+} }
 
-       % this one looks almost like a "||" type bar
-       \finalis
-      }
-    }
-}
+\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
+} }