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