]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chant-or-psalms-notation.ly
LSR: run makelsr.py locally.
[lilypond.git] / Documentation / snippets / chant-or-psalms-notation.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.12.2"
5
6 \header {
7 %% Translation of GIT committish: c1d5bb448321d688185e0c6b798575d4c325ae80
8   texidocfr = "
9 Ce style de notation permet d'indiquer la mélodie d'une psalmodie
10 lorsque les strophes sont de longueur inégale.
11
12 "
13   doctitlefr = "Notation pour psalmodie"
14
15
16   lsrtags = "rhythms, vocal-music, ancient-notation, contexts-and-engravers"
17
18
19
20
21 %% Translation of GIT committish: fa19277d20f8ab0397c560eb0e7b814bd804ecec
22   texidoces = "
23 Este tipo de notación se utiliza para el canto de los Salmos, en
24 que las estrofas no siempre tienen la misma longitud.
25
26 "
27   doctitlees = "Notación de responsos o salmos"
28
29 %% Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
30
31   texidocde = "
32 Diese Form der Notation wird benutzt für die Notation von Psalmen, in denen
33 die Strophen nicht die gleiche Länge haben.
34
35 "
36   doctitlede = "Psalmennotation"
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