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