blob: cbc122b0dcbf27707eedd4d24a69174ca45ff866 (
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
|
\include "deutsch.ly"
#(ly:set-option 'relative-includes #t)
\include "Itexte.ly"
\include "Istimmen.ly"
#(ly:set-option 'relative-includes #f)
\score {
\header {
title = "1. Chor und Rezitativ"
composer = ##f
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\new CueVoice = "sopranCueI" { \globalI \autoBeamOn \sopranCueI }
\new Voice = frauen { \globalI \oneVoice \frauenPausenI }
\new Voice = sopran { \globalI \voiceOne \sopranMelodieI }
\new Voice = alt { \globalI \voiceTwo \altMelodieI }
>>
\new Lyrics \lyricsto sopran { \textI }
\new Staff <<
\clef "bass"
\new CueVoice = "bassCueI" { \globalI \autoBeamOn \bassCueI }
\new Voice = maenner { \globalI \oneVoice \maennerPausenI }
\new Voice = tenor { \globalI \voiceOne \tenorMelodieI }
\new Voice = bass { \globalI \voiceTwo \bassMelodieI }
>>
\new Lyrics \lyricsto bass { \textI }
>>
\layout {
indent = #0
}
}
|