]> git.donarmstrong.com Git - lilypond.git/blob - input/manual/divisiones.ly
Merge master into nested-bookparts
[lilypond.git] / input / manual / divisiones.ly
1 % possible rename to ancient- or gregorian- ?
2 \header {
3     texidoc = "@cindex Divisiones
4
5 Divisiones are ancient variants of breathing signs.
6 Choices are @code{divisioMinima}, @code{divisioMaior},
7 @code{divisioMaxima} and @code{finalis}, @code{virgula} and
8 @code{caesura}.
9
10 " }
11
12 \version "2.11.61"
13
14 \include "gregorian.ly"
15
16 \score {
17   <<
18     \context VaticanaVoice {
19       \override TextScript  #'padding = #3
20       g a g
21       s^\markup { "divisio minima" }
22       \divisioMinima
23       g a g
24       s^\markup { "divisio maior" }
25       \divisioMaior
26       g a g
27       s^\markup { "divisio maxima" }
28       \divisioMaxima
29       \break
30       g a g
31       s^\markup { "finalis" }
32       \finalis
33       g a g
34       s^\markup { "virgula" }
35       \virgula
36       g a g
37       s^\markup { "caesura" }
38       \caesura
39       g a g
40     }
41   >>
42 }