]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/chant-or-psalms-notation.ly
Fixes all once-Stem-now-Flag properties in the docs.
[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 %% Translation of GIT committish: 2d548a99cb9dba80f2ff035582009477cd37eceb
7   texidoces = "
8 Este tipo de notación se utiliza para el canto de los Salmos, en
9 que las estrofas no siempre tienen la misma longitud.
10
11 "
12   doctitlees = "Notación de responsos o salmos"
13
14 %% Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
15
16   texidocde = "
17 Diese Form der Notation wird benutzt für die Notation von Psalmen, in denen
18 die Strophen nicht die gleiche Länge haben.
19
20 "
21   doctitlede = "Psalmennotation"
22
23
24 %% Translation of GIT committish: c1d5bb448321d688185e0c6b798575d4c325ae80
25   texidocfr = "
26 Ce style de notation permet d'indiquer la mélodie d'une psalmodie
27 lorsque les strophes sont de longueur inégale.
28
29 "
30   doctitlefr = "Notation pour psalmodie"
31
32
33   texidoc = "
34 This form of notation is used for the chant of the Psalms, where verses
35 aren't always the same length.
36
37 "
38   doctitle = "Chant or psalms notation"
39 } % begin verbatim
40
41 stemOn = { \revert Staff.Stem #'transparent \revert Staff.Flag #'transparent }
42 stemOff = { \override Staff.Stem #'transparent = ##t \override Staff.Flag #'transparent = ##t }
43
44 \score {
45   \new Staff \with { \remove "Time_signature_engraver" }
46   {
47     \key g \minor
48     \cadenzaOn
49     \stemOff a'\breve bes'4 g'4
50     \stemOn a'2 \bar "||"
51     \stemOff a'\breve g'4 a'4
52     \stemOn f'2 \bar "||"
53     \stemOff a'\breve^\markup { \italic flexe }
54     \stemOn g'2 \bar "||"
55   }
56 }
57