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