]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/satb-choir-template---four-staves.ly
Fixed errors in Catalan 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.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.16.0"
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
20 global = {
21   \key c \major
22   \time 4/4
23   \dynamicUp
24 }
25 sopranonotes = \relative c'' {
26   c2 \p \< d c d \f
27 }
28 sopranowords = \lyricmode { do do do do }
29 altonotes = \relative c'' {
30   c2\p d c d
31 }
32 altowords = \lyricmode { re re re re }
33 tenornotes = {
34   \clef "G_8"
35   c2\mp d c d
36 }
37 tenorwords = \lyricmode { mi mi mi mi }
38 bassnotes = {
39   \clef bass
40   c2\mf d c d
41 }
42 basswords = \lyricmode { mi mi mi mi }
43
44 \score {
45   \new ChoirStaff <<
46     \new Staff <<
47       \new Voice = "soprano" <<
48         \global
49         \sopranonotes
50       >>
51       \lyricsto "soprano" \new Lyrics \sopranowords
52     >>
53     \new Staff <<
54       \new Voice = "alto" <<
55         \global
56         \altonotes
57       >>
58       \lyricsto "alto" \new Lyrics \altowords
59     >>
60     \new Staff <<
61       \new Voice = "tenor" <<
62         \global
63         \tenornotes
64       >>
65       \lyricsto "tenor" \new Lyrics \tenorwords
66     >>
67     \new Staff <<
68       \new Voice = "bass" <<
69         \global
70         \bassnotes
71       >>
72       \lyricsto "bass" \new Lyrics \basswords
73     >>
74   >>
75 }