]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/satb-choir-template---four-staves.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / snippets / satb-choir-template---four-staves.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.31"
5
6 \header {
7 %% Translation of GIT committish: 092f85605dcea69efff5ef31de4ff100346d6ef8
8
9   texidocfr = "
10 Modèle pour chœur à quatre voix mixtes, chaque pupitre ayant sa propre
11 portée.
12
13 "
14   doctitlefr = "Modèle pour chœur SATB sur quatre portées"
15
16
17   lsrtags = "vocal-music, template"
18
19   texidoc = "
20 SATB choir template (four staves)
21
22 "
23   doctitle = "SATB Choir template - four staves"
24 } % begin verbatim
25
26 global = {
27   \key c \major
28   \time 4/4
29 }
30 sopranonotes = \relative c'' {c2 d2}
31 sopranowords = \lyricmode { do do }
32 altonotes = \relative c'' {c2 d2}
33 altowords = \lyricmode { re re }
34 tenornotes = {
35   \clef "G_8" c2 d2}
36 tenorwords = \lyricmode { mi mi }
37 bassnotes = {
38   \clef bass c2 d2}
39 basswords = \lyricmode { mi mi }
40
41 \score{
42   \context ChoirStaff
43   <<
44     \context Staff = soprano <<
45       \context Voice = sop { << \global \sopranonotes >> }
46       \lyricsto "sop" \new Lyrics \sopranowords
47     >>
48     \context Staff = alto <<
49       \context Voice = alt { << \global \altonotes >> }
50       \lyricsto "alt" \new Lyrics \altowords
51     >>
52     \context Staff = tenor <<
53       \context Voice = ten { << \global \tenornotes >> }
54       \lyricsto "ten" \new Lyrics \tenorwords
55     >>
56     \context Staff = bass <<
57       \context Voice = bas { << \global \bassnotes >> }
58       \lyricsto "bas" \new Lyrics \basswords
59     >>
60   >>
61 }
62
63