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