]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/anglican-psalm-template.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / anglican-psalm-template.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.2"
8
9 \header {
10   lsrtags = "template, vocal-music"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 Esta plantilla muestra una forma de preparar un cántico salmódico
15 anglicano.  También muestra cómo se pueden añadir estrofas adicionales
16 como texto independiente por debajo de la música.  Las dos estrofas se
17 codifican en estilos diferentes para ilustrar más posibilidades.
18
19 "
20   doctitlees = "Plantilla de salmo del canto anglicano"
21
22 %% Translation of GIT committish: c3b519f0dd5ff0f8ccfc9a39ed1fe8df8b43741c
23   texidocit = "
24 Questo modello presenta un modo di impostare un salmo anglicano.  Mostra
25 anche come le strofe possono essere aggiunte come testo separato al di sotto
26 della musica.  Le due strofe sono scritte con stili diversi per illustrare
27 le varie possibilità.
28
29 "
30   doctitleit = "Modello per salmo anglicano"
31
32 %% Translation of GIT committish: 144cd434d02e6d90b2fb738eeee99119a7c5e1d2
33
34   texidocde = "
35 Diese Vorlage zeigt eine Art, anglikanische Psalmengesänge zu setzen.  Hier
36 wird auch gezeigt, wie Strophen als einfacher Text unter den Noten hinzugefügt
37 werden können.  Zwei Strophen sind in unterschiedlicher Weise notiert um mehr
38 Möglichkeiten darzustellen.
39 "
40   doctitlede = "Vorlage für anglikanischen Psalm"
41
42
43 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
44   texidocfr = "
45 Cet exemple illustre la manière de présenter un cantique tel qu'on le
46 trouve dans l'église anglicane.  Vous noterez comment sont ajoutés les
47 couplets indépendamment de la musique.  Dans le but de vous montrer
48 plusieurs styles, comparez le code des deux couplets.
49
50 "
51   doctitlefr = "Psalmodie anglicane"
52
53
54   texidoc = "
55 This template shows one way of setting out an Anglican psalm chant. It
56 also shows how the verses may be added as stand-alone text under the
57 music.  The two verses are coded in different styles to demonstrate
58 more possibilities.
59
60 "
61   doctitle = "Anglican psalm template"
62 } % begin verbatim
63
64
65 SopranoMusic = \relative g' {
66   g1 | c2 b | a1 | \bar "||"
67   a1 | d2 c | c b | c1 | \bar "||"
68 }
69
70 AltoMusic = \relative c' {
71   e1 | g2 g | f1 |
72   f1 | f2 e | d d | e1 |
73 }
74
75 TenorMusic = \relative a {
76   c1 | c2 c | c1 |
77   d1 | g,2 g | g g | g1 |
78 }
79
80 BassMusic =  \relative c {
81   c1 | e2 e | f1 |
82   d1 | b2 c | g' g | c,1 |
83 }
84
85 global = {
86   \time 2/2
87 }
88
89 dot = \markup {
90   \raise #0.7 \musicglyph #"dots.dot"
91 }
92
93 tick = \markup {
94   \raise #1 \fontsize #-5 \musicglyph #"scripts.rvarcomma"
95 }
96
97 % Use markup to center the chant on the page
98 \markup {
99   \fill-line {
100     \score {  % centered
101       <<
102         \new ChoirStaff <<
103           \new Staff <<
104             \global
105             \clef "treble"
106             \new Voice = "Soprano" <<
107               \voiceOne
108               \SopranoMusic
109             >>
110             \new Voice = "Alto" <<
111               \voiceTwo
112               \AltoMusic
113             >>
114           >>
115           \new Staff <<
116             \clef "bass"
117             \global
118             \new Voice = "Tenor" <<
119               \voiceOne
120               \TenorMusic
121             >>
122             \new Voice = "Bass" <<
123               \voiceTwo
124               \BassMusic
125             >>
126           >>
127         >>
128       >>
129       \layout {
130         \context {
131           \Score
132           \override SpacingSpanner
133           #'base-shortest-duration = #(ly:make-moment 1 2)
134         }
135         \context {
136           \Staff
137           \remove "Time_signature_engraver"
138         }
139       }
140     }  % End score
141   }
142 }  % End markup
143
144 \markup {
145   \fill-line {
146     \column {
147       \left-align {
148         \null \null \null
149         \line {
150           \fontsize #5 O
151           \fontsize #3 come
152           let us \bold sing | unto \dot the | Lord : let
153         }
154         \line {
155           us heartily
156           \concat { re \bold joice }
157           in the | strength of | our
158         }
159         \line {
160           sal | vation.
161         }
162         \null
163         \line {
164           \hspace #2.5 8. Today if ye will hear his voice *
165         }
166         \line {
167           \concat { \bold hard en }
168           \tick not your \tick hearts : as in the pro-
169         }
170         \line {
171           vocation * and as in the \bold day of tempt- \tick
172         }
173         \line {
174           -ation \tick in the \tick wilderness.
175         }
176       }
177     }
178   }
179 }