blob: 8e31f27657a066f5c9bad76577baa1e2b8df187b (
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
|
\include "deutsch.ly"
\include "stimmen.ly"
\include "texte.ly"
%spezifisch%
\pointAndClickOff
\header {
title = "Kaffeeklatsch"
subtitle = "Quodlibet"
composer = "Text und Musik: Johannes Matthias Michel"
tagline = ##f
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\new Voice = melodieI { \global \oneVoice \sopranMelodie }
>>
\new Lyrics \lyricsto melodieI { \sopranText }
\new Staff <<
\new Voice = melodieII { \global \oneVoice \altMelodie }
>>
\new Lyrics \lyricsto melodieII { \altText }
\new Staff <<
\new Voice = melodieIII { \clef "G_8" \global \oneVoice \tenorMelodie }
>>
\new Lyrics \lyricsto melodieIII { \tenorText }
\new Staff <<
\clef "bass"
\new Voice = ostinato { \global \oneVoice \bassMelodie }
>>
\new Lyrics \lyricsto ostinato { \bassText }
>>
|