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