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