blob: 424a1f0a3d4540537c620fd5a73b93fe66d7c91a (
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
|
\include "deutsch.ly"
\score {
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\label #'Benedictus
\new Voice = frauen { \globalBenedictus \oneVoice \pausenBenedictus }
\new Voice = sopran { \globalBenedictus \voiceOne << \sopranMelodieBenedictus \artikulationBenedictus >> }
\new Voice = alt { \globalBenedictus \voiceTwo \altMelodieBenedictus }
>>
\new Lyrics = text { }
\new Staff <<
\new Voice = maenner { \globalBenedictus \oneVoice \pausenBenedictus }
\new Voice = tenor { \globalBenedictus \clef "bass" \voiceOne \tenorMelodieBenedictus }
\new Voice = bass { \globalBenedictus \clef "bass" \voiceTwo << \bassMelodieBenedictus \artikulationBenedictus >> }
>>
\context Lyrics = text \lyricsto sopran \textBenedictus
>>
\layout {
indent = #0
}
\header {
title = "Missa Brevis"
composer = "Jacob de Haan"
tagline = ##f
piece = "Benedictus"
}
}
|