]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chant-or-psalms-notation.ly
Fixes all once-Stem-now-Flag properties in the docs.
[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: 2d548a99cb9dba80f2ff035582009477cd37eceb
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 %% Translation of GIT committish: 2d548a99cb9dba80f2ff035582009477cd37eceb
41   texidoces = "
42 Este tipo de notación se utiliza para el canto de los Salmos, en
43 que las estrofas no siempre tienen la misma longitud.
44
45 "
46   doctitlees = "Notación de responsos o salmos"
47
48 %% Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
49
50   texidocde = "
51 Diese Form der Notation wird benutzt für die Notation von Psalmen, in denen
52 die Strophen nicht die gleiche Länge haben.
53
54 "
55   doctitlede = "Psalmennotation"
56
57
58 %% Translation of GIT committish: c1d5bb448321d688185e0c6b798575d4c325ae80
59   texidocfr = "
60 Ce style de notation permet d'indiquer la mélodie d'une psalmodie
61 lorsque les strophes sont de longueur inégale.
62
63 "
64   doctitlefr = "Notation pour psalmodie"
65
66
67   texidoc = "
68 This form of notation is used for the chant of the Psalms, where verses
69 aren't always the same length.
70
71 "
72   doctitle = "Chant or psalms notation"
73 } % begin verbatim
74
75 stemOn = { \revert Staff.Stem #'transparent \revert Staff.Flag #'transparent } % begin verbatim
76
77 stemOff = { \override Staff.Stem #'transparent = ##t \override Staff.Flag #'transparent = ##t }
78
79 \score {
80   \new Staff \with { \remove "Time_signature_engraver" }
81   {
82     \key g \minor
83     \cadenzaOn
84     \stemOff a'\breve bes'4 g'4
85     \stemOn a'2 \bar "||"
86     \stemOff a'\breve g'4 a'4
87     \stemOn f'2 \bar "||"
88     \stemOff a'\breve^\markup { \italic flexe }
89     \stemOn g'2 \bar "||"
90   }
91 }
92