]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/breathing-sign-ancient.ly
(conv): add 2.2.0 rule.
[lilypond.git] / input / regression / breathing-sign-ancient.ly
1 \version "2.1.36"
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 \score {
15
16     %
17     % Gregorian notation:
18     %
19     \context VaticanaStaff {
20       \notes \relative c' {
21
22         % we turn bars and bar numbers off for Gregorian stuff
23         \override Staff.BarLine  #'transparent = ##t
24         \override Score.BarNumber  #'transparent = ##t
25
26         % here is no \breathe
27         c g c
28
29         % \virgula applies rcomma, but in a smaller font
30         c \virgula g c
31
32         % \caesura applies rvarcomma, but in a smaller font
33         c \caesura g c
34
35         % \divisioMinima is a simple vertical stroke through the
36         % uppermost staffline, just like the original implementation
37         % of breathing signs.
38         c \divisioMinima g c
39
40         % \divisio{maior,maxima} and \finalis look like bars and are
41         % vertically centered on the staff; the direction property has
42         % no effect
43         c \divisioMaior g c
44         c \divisioMaxima g c
45
46         % this one looks almost like a "||" type bar
47         \finalis
48       }
49     }
50 }