]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/satb-choir-template---four-staves.ly
31bbd6175d05780a4ef257f7819887dd6d24c82b
[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 = "vocal-music, template"
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: 6ae36b6f8a7cf2df5f4e46c3c06820fccd9f35e1
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: 28097cf54698db364afeb75658e4c8e0e0ccd716
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   texidoc = "
45 SATB choir template (four staves)
46
47 "
48   doctitle = "SATB Choir template - four staves"
49 } % begin verbatim
50
51
52 global = {
53   \key c \major
54   \time 4/4
55   \dynamicUp
56 }
57 sopranonotes = \relative c'' {
58   c2 \p \< d c d \f
59 }
60 sopranowords = \lyricmode { do do do do }
61 altonotes = \relative c'' {
62   c2\p d c d
63 }
64 altowords = \lyricmode { re re re re }
65 tenornotes = {
66   \clef "G_8"
67   c2\mp d c d
68 }
69 tenorwords = \lyricmode { mi mi mi mi }
70 bassnotes = {
71   \clef bass
72   c2\mf d c d
73 }
74 basswords = \lyricmode { mi mi mi mi }
75
76 \score {
77   \new ChoirStaff <<
78     \new Staff <<
79       \new Voice = "soprano" <<
80         \global
81         \sopranonotes
82       >>
83       \lyricsto "soprano" \new Lyrics \sopranowords
84     >>
85     \new Staff <<
86       \new Voice = "alto" <<
87         \global
88         \altonotes
89       >>
90       \lyricsto "alto" \new Lyrics \altowords
91     >>
92     \new Staff <<
93       \new Voice = "tenor" <<
94         \global
95         \tenornotes
96       >>
97       \lyricsto "tenor" \new Lyrics \tenorwords
98     >>
99     \new Staff <<
100       \new Voice = "bass" <<
101         \global
102         \bassnotes
103       >>
104       \lyricsto "bass" \new Lyrics \basswords
105     >>
106   >>
107 }
108