]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/breathing-sign-ancient.ly
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / input / regression / breathing-sign-ancient.ly
index 6987bd00d9847e9904aa416141c06c1003c8bb73..5e4de07dfc3bc6a504b5fd12ab384f721453aefe 100644 (file)
@@ -1,7 +1,7 @@
-\version "2.1.30"
+\version "2.7.39"
 
 \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
@@ -11,40 +11,38 @@ finalis, the latter three looking similar to bar glyphs.
 
 \include "gregorian-init.ly"
 
-\score {
 
-    %
-    % Gregorian notation:
-    %
-    \context VaticanaStaff {
-      \notes \relative c' {
+%%
+%% Gregorian notation:
+%%
+\context VaticanaStaff {
+  \relative c' {
 
-       % we turn bars and bar numbers off for Gregorian stuff
-       \override Staff.BarLine  #'transparent = ##t
-       \override Score.BarNumber  #'transparent = ##t
+    %% we turn bars and bar numbers off for Gregorian stuff
+    \override Staff.BarLine  #'transparent = ##t
+    \override Score.BarNumber  #'transparent = ##t
 
-       % here is no \breathe
-       c g c
+    %% here is no \breathe
+    c g c
 
-       % \virgula applies rcomma, but in a smaller font
-       c \virgula g c
+    %% \virgula applies rcomma, but in a smaller font
+    c \virgula g c
 
-       % \caesura applies rvarcomma, but in a smaller font
-       c \caesura 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
+    %% \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
+    %% \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
+  }
 }