blob: 0a75ec66f0909665b1be2d0f343fa7f4b8914a6a (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
\include "deutsch.ly"
include(stimmen.pre)
include(texte.pre)
%spezifisch%
\version "2.19.80"
\pointAndClickOff
\header {
tagline = ""
}
\paper {
top-margin = 5
print-all-headers = ##t
}
\score {
\header {
title = "Magnificat"
subtitle = "(deutsch)"
composer = "Heinrich Schütz (1585-1672)"
arranger = "(aus den „zwölf geistlichen Gesängen“, 1657)"
}
<<
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\new Voice = "sopran" \with { \remove "Forbid_line_break_engraver" } <<
{ \global \sopranMelodie }
\bars
>>
>>
\new Lyrics = "sopranText" {}
\new Staff <<
\new Voice = "alt" \with { \remove "Forbid_line_break_engraver" } <<
{ \global \altMelodie }
\bars
>>
>>
\new Lyrics = "altText" {}
\new Staff <<
\new Voice = "tenor" \with { \remove "Forbid_line_break_engraver" } <<
{ \global \clef "G_8" \tenorMelodie }
\bars
>>
>>
\new Lyrics = "tenorText" {}
\new Staff <<
\new Voice = "bass" \with { \remove "Forbid_line_break_engraver" } <<
{ \global \clef "bass" \bassMelodie }
\bars
>>
>>
\new Lyrics = "bass" {}
\context Lyrics = "sopranText" \lyricsto "sopran" \sopranText
\context Lyrics = "altText" \lyricsto "alt" \altText
\context Lyrics = "tenorText" \lyricsto "tenor" \tenorText
\context Lyrics = "bassText" \lyricsto "bass" \bassText
>>
>>
\layout {
indent = #0
% \context { \Staff \RemoveEmptyStaves }
}
}
|