]> git.donarmstrong.com Git - lilypond.git/blob - input/test/divisiones.ly
.ly version update.
[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 "1.9.8"
11
12 \include "gregorian-init.ly"
13
14 \score {
15     \notes {
16         \new Staff \addlyrics \notes \transpose c c' {
17             \property Score.timing = ##f
18             \property Score.barAlways = ##t
19             \property Voice.TextScript \set #'padding = #3
20             \property Staff.BarLine \override #'transparent = ##t
21             \property Voice.Stem \override #'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         \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 }