blob: ca22b357b35baa2304f7f5b3c580b3ecee3e2eda (
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"
\score {
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\label #'Sanctus
\globalSanctus
\new Voice = frauen { \globalSanctus \oneVoice \frauenPausenSanctus }
\new Voice = sopran { \globalSanctus \voiceOne << \sopranMelodieSanctus \artikulationSanctus >> }
\new Voice = alt { \globalSanctus \voiceTwo \altMelodieSanctus }
>>
\new Lyrics = textAlt { }
\new Staff <<
\clef "bass"
\new Voice = maenner { \globalSanctus \oneVoice \maennerPausenSanctus }
\new Voice = tenor { \globalSanctus \voiceOne \tenorMelodieSanctus }
\new Voice = bass { \globalSanctus \voiceTwo << \bassMelodieSanctus \artikulationSanctus >> }
>>
\new Lyrics = textBass { }
\context Lyrics = textAlt \lyricsto alt \textAltSanctus
\context Lyrics = textBass \lyricsto bass \textBassSanctus
>>
\layout {
indent = #0
}
\header {
title = "Missa in C"
subtitle = "Orgelsolomesse KV 259"
composer = "Wolfgang Amadeus Mozart (1756-1791)"
piece = "Sanctus"
tagline = ##f
}
}
|