]> git.donarmstrong.com Git - lilypond.git/blob - input/test/divisiones.ly
*** empty log message ***
[lilypond.git] / input / test / divisiones.ly
1 % possible rename to ancient- or gregorian- ?
2 \header {
3     texidoc = "@cindex Divisiones
4 Divisiones are gregorian variants of breathing signs.
5 Choices are @code{divisioMinima}, @code{divisioMaior},
6 @code{divisioMaxima} and @code{finalis}, @code{virgula} and
7 @code{caesura}.
8 " }
9
10 \version "2.1.28"
11
12 \include "gregorian-init.ly"
13
14 \score {
15  <<
16         \context Voice \notes \transpose c c' {
17             \set Score.timing = ##f
18             \set Score.barAlways = ##t
19             \override TextScript  #'padding = #3
20             \override Staff.BarLine  #'transparent = ##t
21             \override Stem  #'transparent = ##t
22             g4( a) g e( f) e
23             ^\markup { "divisio minima" }
24             \divisioMinima
25             g4( a) g e( f) e
26             ^\markup { "divisio maior" }
27             \divisioMaior
28             g4( a) g e( f) e
29             ^\markup { "divisio maxima" }
30             \divisioMaxima
31             g4( a) g e( f) e
32             ^\markup { "finalis" }
33             \finalis
34             g4( a) g e( f) e
35
36             ^\markup { "virgula" }
37             \virgula
38             g4( a) g e( f) e
39             ^\markup { "caesura" }
40             \caesura
41             g4( a) g e( f) e
42         }
43         \lyricsto "" \new  Lyrics \lyrics {
44             Blah blub, blah blam.
45             Blah blub, blah blam.
46             Blah blub, blah blam.
47             Blah blub, blah blam.
48             Blah blub, blah blam.
49             Blah blub, blah blam.
50             Blah blub, blah blam.
51         }
52     >>
53 }