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