blob: 05f5cb73f3be887710db17df8e93a1e2fbedeee7 (
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
38
39
40
41
42
43
44
|
\include "deutsch.ly"
include(stimmen.pre)
include(texte.pre)
%spezifisch%
\header {
tagline = ""
}
\paper {
top-margin = 5
print-all-headers = ##t
}
\pointAndClickOff
\score {
\header {
title = "Freut euch von Herzen"
poet = "Text: volkstümlich"
composer = "Musik: Josef Michel (1928-2002)"
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Lyrics = "textSopran" {}
\new Staff <<
\new Voice = "frauen" { \global \oneVoice \frauenPausen }
\new Voice = "sopran" { \global \voiceOne \sopranMelodie }
\new Voice = "alt" { \global \voiceTwo \altMelodie }
>>
\new Lyrics = "textAlt" {}
\new Staff <<
\new Voice = "maenner" { \global \clef "bass" \oneVoice \maennerPausen }
\new Voice = "tenor" { \global \clef "bass" \voiceOne \tenorMelodie }
\new Voice = "bass" { \global \clef "bass" \voiceTwo \bassMelodie }
>>
\new Lyrics = "textBass" {}
\context Lyrics = "textSopran" \lyricsto "sopran" \textSopran
\context Lyrics = "textAlt" \lyricsto "alt" \textAlt
\context Lyrics = "textBass" \lyricsto "bass" \textBass
>>
\layout {
indent = #0
}
}
|