]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chant-or-psalms-notation.ly
Doc-fr: updates texidocs
[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.17.6
8 \version "2.17.6"
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 stemOff = \hide Staff.Stem
23 stemOn  = \undo \stemOff
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 }