]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/chant-or-psalms-notation.ly
3a9b7022063411a47e8d59736ee185e595d007f9
[lilypond.git] / Documentation / snippets / new / chant-or-psalms-notation.ly
1 \version "2.15.15"
2
3 \header {
4   lsrtags = "rhythms, vocal-music, ancient-notation, contexts-and-engravers"
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 = { \revert Staff.Stem #'transparent \revert Staff.Flag #'transparent }
15 stemOff = { \override Staff.Stem #'transparent = ##t \override Staff.Flag #'transparent = ##t }
16
17 \score {
18   \new Staff \with { \remove "Time_signature_engraver" }
19   {
20     \key g \minor
21     \cadenzaOn
22     \stemOff a'\breve bes'4 g'4
23     \stemOn a'2 \bar "||"
24     \stemOff a'\breve g'4 a'4
25     \stemOn f'2 \bar "||"
26     \stemOff a'\breve^\markup { \italic flexe }
27     \stemOn g'2 \bar "||"
28   }
29 }
30