]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chant-or-psalms-notation.ly
Imported Upstream version 2.16.0
[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.16.0"
9
10 \header {
11   lsrtags = "rhythms, vocal-music, ancient-notation, contexts-and-engravers, specific-notation"
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 = {
23   \revert Staff.Stem #'transparent
24   \revert Staff.Flag #'transparent
25 }
26
27 stemOff = {
28   \override Staff.Stem #'transparent = ##t
29   \override Staff.Flag #'transparent = ##t
30 }
31
32 \score {
33   \new Staff \with { \remove "Time_signature_engraver" }
34   {
35     \key g \minor
36     \cadenzaOn
37     \stemOff a'\breve bes'4 g'4
38     \stemOn a'2 \bar "||"
39     \stemOff a'\breve g'4 a'4
40     \stemOn f'2 \bar "||"
41     \stemOff a'\breve^\markup { \italic flexe }
42     \stemOn g'2 \bar "||"
43   }
44 }