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