]> 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 7c9d1961fb23bd3dd8618bc0572bba04270b9439..5e4de07dfc3bc6a504b5fd12ab384f721453aefe 100644 (file)
@@ -11,29 +11,38 @@ finalis, the latter three looking similar to bar glyphs.
 
 \include "gregorian-init.ly"
 
+
+%%
+%% Gregorian notation:
+%%
 \context VaticanaStaff {
   \relative c' {
-    % here is no \breathe
+
+    %% 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
 
-    % \virgula applies rcomma, but in a smaller font
+    %% \virgula applies rcomma, but in a smaller font
     c \virgula g c
 
-    % \caesura applies rvarcomma, but in a smaller font
+    %% \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.
+    %% \divisioMinima is a simple vertical stroke through the
+    %% uppermost staffline, just like the original implementation
+    %% of breathing signs.
     c \divisioMinima g c
 
-    % \divisioMaior, \divisioMaxima and \finalis look like bars and
-    % are vertically centered on the staff; the direction property
-    % has no effect
+    %% \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
+    %% this one looks almost like a "||" type bar
     \finalis
   }
 }