]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/satb-choir-template---four-staves.ly
Merge remote-tracking branch 'origin/master' into translation
[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.di.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.19.2"
8
9 \header {
10   lsrtags = "template, vocal-music"
11
12   texidoc = "
13 SATB choir template (four staves)
14
15 "
16   doctitle = "SATB Choir template - four staves"
17 } % begin verbatim
18
19 global = {
20   \key c \major
21   \time 4/4
22   \dynamicUp
23 }
24 sopranonotes = \relative c'' {
25   c2 \p \< d c d \f
26 }
27 sopranowords = \lyricmode { do do do do }
28 altonotes = \relative c'' {
29   c2\p d c d
30 }
31 altowords = \lyricmode { re re re re }
32 tenornotes = {
33   \clef "G_8"
34   c2\mp d c d
35 }
36 tenorwords = \lyricmode { mi mi mi mi }
37 bassnotes = {
38   \clef bass
39   c2\mf d c d
40 }
41 basswords = \lyricmode { mi mi mi mi }
42
43 \score {
44   \new ChoirStaff <<
45     \new Staff <<
46       \new Voice = "soprano" <<
47         \global
48         \sopranonotes
49       >>
50       \new Lyrics \lyricsto "soprano" \sopranowords
51     >>
52     \new Staff <<
53       \new Voice = "alto" <<
54         \global
55         \altonotes
56       >>
57       \new Lyrics \lyricsto "alto" \altowords
58     >>
59     \new Staff <<
60       \new Voice = "tenor" <<
61         \global
62         \tenornotes
63       >>
64       \new Lyrics \lyricsto "tenor" \tenorwords
65     >>
66     \new Staff <<
67       \new Voice = "bass" <<
68         \global
69         \bassnotes
70       >>
71       \new Lyrics \lyricsto "bass" \basswords
72     >>
73   >>
74 }