]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/breathing-sign-ancient.ly
Imported Upstream version 2.19.45
[lilypond.git] / input / regression / breathing-sign-ancient.ly
1 \version "2.19.21"
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 {
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 }
39
40 mus = \relative {
41   \clef tenor
42   c' g c
43   c \virgula g c
44   c \caesura g c
45   c \divisioMinima g c
46   c \divisioMaior g c
47   c \divisioMaxima g c
48   \finalis
49 }
50
51 \new Staff \with {
52   \remove Bar_engraver
53 } {
54   \context Voice \with {
55     \remove Stem_engraver
56   } {
57     \mus
58 } }
59
60 \new Staff \with {
61   \override StaffSymbol.line-positions = #'(-2 0 2 4)
62   \remove Bar_engraver
63 } {
64   \context Voice \with {
65     \remove Stem_engraver
66   } {
67     \mus
68 } }
69
70 \new Staff \with {
71   \override StaffSymbol.line-count = #6
72   \remove Bar_engraver
73 } {
74   \context Voice \with {
75     \remove Stem_engraver
76   } {
77     \mus
78 } }
79
80 \new Staff \with {
81   \override StaffSymbol.line-count = #2
82   \remove Bar_engraver
83 } {
84   \context Voice \with {
85     \remove Stem_engraver
86   } {
87     \mus
88 } }
89
90 \new Staff \with {
91   \override StaffSymbol.line-positions = #'(-4 -2 2 5)
92   \remove Bar_engraver
93 } {
94   \context Voice \with {
95     \remove Stem_engraver
96   } {
97     \mus
98 } }