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