]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/satb-choir-template---four-staves.ly
Merge branch 'lilypond/translation'
[lilypond.git] / Documentation / snippets / satb-choir-template---four-staves.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: c3b519f0dd5ff0f8ccfc9a39ed1fe8df8b43741c
11
12   texidoces = "
13 Plantilla de coro SATB (en cuatro pentagramas)
14
15 "
16   doctitlees = "Plantilla de coro SATB a cuatro pentagramas"
17
18 %% Translation of GIT committish: 4077120c18ac1dc490501b3d7d5886bc93e61a42
19   texidocit = "
20 Modello per coro SATB (quattro righi)
21
22 "
23   doctitleit = "Modello per coro SATB - quattro righi"
24
25   lsrtags = "vocal-music, template"
26
27
28
29
30 %% Translation of GIT committish:  144cd434d02e6d90b2fb738eeee99119a7c5e1d2
31
32   texidocde = "
33 SATB-Chorvorlage auf vier Systemen
34
35 "
36   doctitlede = "SATB-Chorvorlage auf vier Systemen"
37
38
39 %% Translation of GIT committish: 092f85605dcea69efff5ef31de4ff100346d6ef8
40
41   texidocfr = "
42 Modèle pour chœur à quatre voix mixtes, chaque pupitre ayant sa propre
43 portée.
44
45 "
46   doctitlefr = "Modèle pour chœur SATB sur quatre portées"
47
48
49   texidoc = "
50 SATB choir template (four staves)
51
52 "
53   doctitle = "SATB Choir template - four staves"
54 } % begin verbatim
55
56 global = {
57   \key c \major
58   \time 4/4
59   \dynamicUp
60 }
61 sopranonotes = \relative c'' {
62   c2 \p \< d c d \f
63 }
64 sopranowords = \lyricmode { do do do do }
65 altonotes = \relative c'' {
66   c2\p d c d
67 }
68 altowords = \lyricmode { re re re re }
69 tenornotes = {
70   \clef "G_8"
71   c2\mp d c d
72 }
73 tenorwords = \lyricmode { mi mi mi mi }
74 bassnotes = {
75   \clef bass
76   c2\mf d c d
77 }
78 basswords = \lyricmode { mi mi mi mi }
79
80 \score {
81   \new ChoirStaff <<
82     \new Staff <<
83       \new Voice = "soprano" <<
84         \global
85         \sopranonotes
86       >>
87       \lyricsto "soprano" \new Lyrics \sopranowords
88     >>
89     \new Staff <<
90       \new Voice = "alto" <<
91         \global
92         \altonotes
93       >>
94       \lyricsto "alto" \new Lyrics \altowords
95     >>
96     \new Staff <<
97       \new Voice = "tenor" <<
98         \global
99         \tenornotes
100       >>
101       \lyricsto "tenor" \new Lyrics \tenorwords
102     >>
103     \new Staff <<
104       \new Voice = "bass" <<
105         \global
106         \bassnotes
107       >>
108       \lyricsto "bass" \new Lyrics \basswords
109     >>
110   >>
111 }
112