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