]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/breathing-sign-ancient.ly
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / input / regression / breathing-sign-ancient.ly
1 \version "2.7.39"
2
3 \header{
4   texidoc="
5 Gregorian chant notation sometimes also uses commas and ticks, but in
6 smaller font size (we call it 'virgula' and 'caesura').  However, the
7 most common breathing signs are divisio minima/maior/maxima and
8 finalis, the latter three looking similar to bar glyphs.
9
10 " }
11
12 \include "gregorian-init.ly"
13
14
15 %%
16 %% Gregorian notation:
17 %%
18 \context VaticanaStaff {
19   \relative c' {
20
21     %% we turn bars and bar numbers off for Gregorian stuff
22     \override Staff.BarLine  #'transparent = ##t
23     \override Score.BarNumber  #'transparent = ##t
24
25     %% here is no \breathe
26     c g c
27
28     %% \virgula applies rcomma, but in a smaller font
29     c \virgula g c
30
31     %% \caesura applies rvarcomma, but in a smaller font
32     c \caesura g c
33
34     %% \divisioMinima is a simple vertical stroke through the
35     %% uppermost staffline, just like the original implementation
36     %% of breathing signs.
37     c \divisioMinima g c
38
39     %% \divisio{maior,maxima} and \finalis look like bars and are
40     %% vertically centered on the staff; the direction property has
41     %% no effect
42     c \divisioMaior g c
43     c \divisioMaxima g c
44
45     %% this one looks almost like a "||" type bar
46     \finalis
47   }
48 }