]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/chant-or-psalms-notation.ly
3351cd2d38fa026f1f354f5b93bf1b708620943c
[lilypond.git] / Documentation / snippets / new / chant-or-psalms-notation.ly
1 \version "2.16.0"
2
3 \header {
4   lsrtags = "rhythms, vocal-music, ancient-notation, contexts-and-engravers, specific-notation"
5
6   texidoc = "
7 This form of notation is used for the chant of the Psalms, where verses
8 aren't always the same length.
9
10 "
11   doctitle = "Chant or psalms notation"
12 }
13
14 stemOn = {
15   \revert Staff.Stem #'transparent
16   \revert Staff.Flag #'transparent
17 }
18
19 stemOff = {
20   \override Staff.Stem #'transparent = ##t
21   \override Staff.Flag #'transparent = ##t
22 }
23
24 \score {
25   \new Staff \with { \remove "Time_signature_engraver" }
26   {
27     \key g \minor
28     \cadenzaOn
29     \stemOff a'\breve bes'4 g'4
30     \stemOn a'2 \bar "||"
31     \stemOff a'\breve g'4 a'4
32     \stemOn f'2 \bar "||"
33     \stemOff a'\breve^\markup { \italic flexe }
34     \stemOn g'2 \bar "||"
35   }
36 }
37