blob: 2684ab49016d6637b5b4c7c7d879d842c724fcb7 (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
%some settings% vim: ai sw=2 lbr nu et
\version "2.18"
\include "dynArt_four.ly"
%\include "dynArt_three.ly"
%\include "dynArt_.ly"
%\include "../dynArt.ly"
\include "../stimmen.ly"
\include "../texte.ly"
\pointAndClickOff
\header {
title = "O Magnum Mysterium"
composer = "Morten Lauridsen"
%opus = "<+Werk+>"
tagline = \markup {
%\bold "studentenchor"
}
}
\paper {
#(set-paper-size "a5")
line-width = \paper-width - 20 %16
top-margin = 10 %8
bottom-margin = 10 %8
ragged-last-bottom = #'f
system-count = 8
page-count = 4
print-page-number = #'f
}
%#(set-default-paper-size "a4" 'landscape)
\layout {
indent = #0
\context {
\Staff
\override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3.5)
}
}
#(set-global-staff-size 11)
sop = <<
%\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." }
\new Voice = "sopA" { \global \sSolo }
<<
\new Voice = "soprane" { \global \sopranMelodie }
\addlyrics { \sopranText }
>>
\new NullVoice = "saligner" { \sSolo }
>>
alt = <<
\new Voice = "alti" { \global \altMelodie }
\addlyrics { \altText }
>>
ten = { \dynamicUp <<
\meta
\tenorArt
{ \nalt }
{ \partcombine
{ \tenorMelodieA }
{ \tenorMelodieB }
}
\new NullVoice = "taligner" { \tenorMelodieA }
%\new Voice = "tenoere" { \global \tenorMelodieA }
%\lyricsto "t1" { \tenorText }
%\lyricsto "one" \tenorText
% \new Lyrics { \lyricsto "one" \tenorText }
%\new Lyrics { \lyricsto "tenoere" \tenorText }
>> }
bas = <<
\new Voice = "baesse" { \global \bassMelodie }
\addlyrics { \bassText }
>>
\score {
\new ChoirStaff \with { printPartCombineTexts = ##f \accepts Devnull } <<
\new Staff = sopran { \sop }
\new Lyrics \with { alignAboveContext = sopran } {
\lyricsto "saligner" \sSoloText
}
\new Staff = alt { \alt }
\new Staff = tenor { \ten }
%\new Staff = extra { \new Voice { \global \tenorMelodieB } }
\new Lyrics { \lyricsto "taligner" \tenorText }
\new Staff = bass { \bas }
>>
%{
\midi {
\context{
\Score
%tempoWholesPerMinute = #(ly:make-moment 72 4)
tempoWholesPerMinute = #(ly:make-moment 80 4)
}
}
%}
\layout {
}
}
|