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