blob: 9e1c25d3b1c7bf88e0bd69b60ec493ca4a2506a6 (
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
|
%some settings% vim: ai sw=2 lbr nu et
\version "2.14"
\include "stimmen.ly"
\include "texte.ly"
\pointAndClickOff
\header {
title = "Sommerlied"
subtitle = "Song of Summer"
composer = "Max Bruch"
opus = "Op. 60 No. 2"
tagline = ""
}
\paper {
line-width = \paper-width - 30
top-margin = 10
bottom-margin = 10
ragged-last-bottom = #'f
system-count = 3
page-count = 1
}
\layout {
indent = #0
\context {
\Staff
\override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3.5)
}
}
#(set-global-staff-size 16)
sop = <<
%\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." }
\new Voice = "soprane" {
\transpose c bes,
{
\voiceOne
\sopranMelodie
}
}
% {
\new Voice = "alti" {
\transpose c bes,
{
\voiceTwo
\altMelodie
}
}
% }
>>
alt = <<
\new Voice = "alti" {
\transpose c bes,
\altMelodie
}
>>
ten = <<
\new Voice = "tenoere" {
\transpose c bes,
\tenorMelodie
}
>>
bas = <<
\new Voice = "baesse" {
\transpose c bes,
\bassMelodie
}
\addlyrics { \stzIb }
\addlyrics { \stzIIb }
\addlyrics { \stzIIIb }
\addlyrics { \stzIVb }
>>
\score {
\new ChoirStaff \with { printPartCombineTexts = ##f } <<
\new Staff = sopran { \global \sop }
%\new Lyrics \lyricsto soprane \stzI
%\new Staff = alt { \global \alt }
%\new Lyrics \lyricsto alti \stzII
\new Staff = tenor { \global \ten }
%\new Lyrics \lyricsto tenoere \stzIII
%\new Lyrics \lyricsto tenoere \stzIV
\new Staff = bass { \global \bas }
>>
%\midi {
%\context{
%\Score
%tempoWholesPerMinute = #(ly:make-moment 72 4)
%}
%}
\layout {
}
}
|