]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/breathing-sign-ancient.ly
Merge commit 'origin' into beamlets2
[lilypond.git] / input / regression / breathing-sign-ancient.ly
index 26d2061da46146c4eabac9e2e5ab182e2ab87a11..3115d6a625fd42a068b0d7ef4006d6aeb97f0023 100644 (file)
@@ -1,7 +1,7 @@
-\version "2.1.7"
+\version "2.12.0"
 
 \header{
 
 \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
 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 {
-      \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
-       \property Staff.BarLine \set #'transparent = ##t
-       \property Score.BarNumber \set #'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
+  }
 }
 }