]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chant-or-psalms-notation.ly
Update snippets from today's LSR with changed makelsr.py
[lilypond.git] / Documentation / snippets / chant-or-psalms-notation.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.15.15
8 \version "2.15.15"
9
10 \header {
11   lsrtags = "rhythms, vocal-music, ancient-notation, contexts-and-engravers"
12
13   texidoc = "
14 This form of notation is used for the chant of the Psalms, where verses
15 aren't always the same length.
16
17 "
18   doctitle = "Chant or psalms notation"
19 } % begin verbatim
20
21
22 stemOn = { \revert Staff.Stem #'transparent \revert Staff.Flag #'transparent }
23 stemOff = { \override Staff.Stem #'transparent = ##t \override Staff.Flag #'transparent = ##t }
24
25 \score {
26   \new Staff \with { \remove "Time_signature_engraver" }
27   {
28     \key g \minor
29     \cadenzaOn
30     \stemOff a'\breve bes'4 g'4
31     \stemOn a'2 \bar "||"
32     \stemOff a'\breve g'4 a'4
33     \stemOn f'2 \bar "||"
34     \stemOff a'\breve^\markup { \italic flexe }
35     \stemOn g'2 \bar "||"
36   }
37 }