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