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