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