]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/breathing-sign-ancient.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / breathing-sign-ancient.ly
1 \version "2.16.0"
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 \include "gregorian.ly"
12
13 \context VaticanaStaff {
14   \relative c' {
15     % here is no \breathe
16     c g c
17
18     % \virgula applies rcomma, but in a smaller font
19     c \virgula g c
20
21     % \caesura applies rvarcomma, but in a smaller font
22     c \caesura g c
23
24     % \divisioMinima is a simple vertical stroke through the
25     % uppermost staffline, just like the original implementation
26     % of breathing signs.
27     c \divisioMinima g c
28
29     % \divisioMaior, \divisioMaxima and \finalis look like bars and
30     % are vertically centered on the staff; the direction property
31     % has no effect
32     c \divisioMaior g c
33     c \divisioMaxima g c
34
35     % this one looks almost like a "||" type bar
36     \finalis
37   }
38 }