blob: b5d04e5515bbe0de13461902a971515994f00f89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
\include "deutsch.ly"
include(stimmen.pre)
include(texte.pre)
%spezifisch%
\pointAndClickOff
\header {
title = Ständchen
tagline = ##f
}
\score {
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\new Voice = tenorI { \global \clef "G_8" \tenorIMelodie }
>>
\new Lyrics \lyricsto tenorI { \tenorIText }
\new Staff <<
\new Voice = tenorII { \global \clef "G_8" \tenorIIMelodie }
>>
\new Lyrics \lyricsto tenorII { \tenorIIText }
\new Staff <<
\new Voice = bassI { \global \clef "bass" \bassIMelodie }
>>
\new Lyrics \lyricsto bassI { \bassIText }
\new Staff <<
\new Voice = bassII { \global \clef "bass" \bassIIMelodie }
>>
\new Lyrics \lyricsto bassII { \bassIIText }
>>
\layout {
indent = #0
}
}
|