]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/satb-choir-template---four-staves.ly
Merge branch 'metronome'
[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   lsrtags = "vocal-music, template"
8
9   texidoc = "
10 SATB choir template (four staves)
11
12 "
13   doctitle = "SATB Choir template - four staves"
14 } % begin verbatim
15
16 global = {
17   \key c \major
18   \time 4/4
19 }
20 sopranonotes = \relative c'' {c2 d2}
21 sopranowords = \lyricmode { do do }
22 altonotes = \relative c'' {c2 d2}
23 altowords = \lyricmode { re re }
24 tenornotes = {
25   \clef "G_8" c2 d2}
26 tenorwords = \lyricmode { mi mi }
27 bassnotes = {
28   \clef bass c2 d2}
29 basswords = \lyricmode { mi mi }
30
31 \score{
32   \context ChoirStaff
33   <<
34     \context Staff = soprano <<
35       \context Voice = sop { << \global \sopranonotes >> }
36       \lyricsto "sop" \new Lyrics \sopranowords
37     >>
38     \context Staff = alto <<
39       \context Voice = alt { << \global \altonotes >> }
40       \lyricsto "alt" \new Lyrics \altowords
41     >>
42     \context Staff = tenor <<
43       \context Voice = ten { << \global \tenornotes >> }
44       \lyricsto "ten" \new Lyrics \tenorwords
45     >>
46     \context Staff = bass <<
47       \context Voice = bas { << \global \bassnotes >> }
48       \lyricsto "bas" \new Lyrics \basswords
49     >>
50   >>
51 }
52
53