summaryrefslogtreecommitdiff
path: root/Missa_in_C
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-01-22 10:51:31 +0100
committerErich Eckner <git@eckner.net>2019-01-22 10:51:31 +0100
commitb5730adfcc54f7af19e9d46fb78f172d898346ee (patch)
treea6b5e50a206c3a4a70888bedb9a5f421e07b6073 /Missa_in_C
parent86cc14f548b9f2ccd0673dddc428a15afe0f5f0c (diff)
downloadMusik-b5730adfcc54f7af19e9d46fb78f172d898346ee.tar.xz
Missa_in_C begonnen, Kyrie fertig
Diffstat (limited to 'Missa_in_C')
-rw-r--r--Missa_in_C/Makefile31
-rw-r--r--Missa_in_C/Missa_in_C.ly36
-rw-r--r--Missa_in_C/parts/Kyrie.ly40
-rw-r--r--Missa_in_C/parts/artikulation_Kyrie.ly18
-rw-r--r--Missa_in_C/parts/stimmen_Kyrie.ly234
-rw-r--r--Missa_in_C/parts/texte_Kyrie.ly33
6 files changed, 392 insertions, 0 deletions
diff --git a/Missa_in_C/Makefile b/Missa_in_C/Makefile
new file mode 100644
index 0000000..877ea34
--- /dev/null
+++ b/Missa_in_C/Makefile
@@ -0,0 +1,31 @@
+CURDOC=$(shell basename "$(CURDIR)")
+
+ifeq ($(FUER),ewe)
+ SPEZIFISCH=\#(set! paper-alist (cons '(\"kindle\" . (cons (* 210 mm) (* 130 mm))) paper-alist))\n\#(set-default-paper-size \"kindle\")
+else
+ SPEZIFISCH=
+ # \#(set-global-staff-size 14)
+endif
+
+ifeq ($(MIDI),1)
+ MIDI_REGEX=
+else
+ MIDI_REGEX=/\\\\midi/{ :a; s/\\\\midi[^{}]*{/\\\\midi/; tb; N; ba; :b; s/{[^{}]*}//; tb; s/\\\\midi[^{}]*}//; t; N; bb; }
+endif
+
+all: $(CURDOC).pdf
+
+clean:
+ rm -f *.pre
+
+Clean: clean
+ rm -f *.pdf *.midi
+
+%.pre: %.ly
+ sed " \
+ s@%spezifisch%@$(SPEZIFISCH)@ ; \
+ $(MIDI_REGEX) \
+ " "$<" > "$@"
+
+%.pdf: %.pre *.ly parts/*.ly
+ lilypond $<
diff --git a/Missa_in_C/Missa_in_C.ly b/Missa_in_C/Missa_in_C.ly
new file mode 100644
index 0000000..c1ffb1b
--- /dev/null
+++ b/Missa_in_C/Missa_in_C.ly
@@ -0,0 +1,36 @@
+\include "deutsch.ly"
+\version "2.19.80"
+
+%spezifisch%
+
+\pointAndClickOff
+
+\paper {
+ top-margin = 5
+}
+\header {
+ title = "Missa in C"
+ subtitle = "Orgelsolomesse KV 259"
+ composer = "Wolfgang Amadeus Mozart (1756-1791)"
+ tagline = ##f
+}
+
+#(ly:set-option 'relative-includes #t)
+\include "parts/artikulation_Kyrie.ly"
+\include "parts/stimmen_Kyrie.ly"
+\include "parts/texte_Kyrie.ly"
+%\include "parts/artikulation_Gloria.ly"
+%\include "parts/stimmen_Gloria.ly"
+%\include "parts/texte_Gloria.ly"
+%\include "parts/artikulation_Benedictus.ly"
+%\include "parts/stimmen_Benedictus.ly"
+%\include "parts/texte_Benedictus.ly"
+%\include "parts/artikulation_Agnus_Dei.ly"
+%\include "parts/stimmen_Agnus_Dei.ly"
+%\include "parts/texte_Agnus_Dei.ly"
+
+\include "parts/Kyrie.ly"
+%\include "parts/Gloria.ly"
+%\include "parts/Benedictus.ly"
+%\include "parts/Agnus_Dei.ly"
+#(ly:set-option 'relative-includes #f)
diff --git a/Missa_in_C/parts/Kyrie.ly b/Missa_in_C/parts/Kyrie.ly
new file mode 100644
index 0000000..28ac677
--- /dev/null
+++ b/Missa_in_C/parts/Kyrie.ly
@@ -0,0 +1,40 @@
+\include "deutsch.ly"
+
+\score {
+ \new ChoirStaff <<
+ \set Score.skipBars = ##t
+ \new Staff <<
+ \label #'Kyrie
+ \globalKyrie
+ \new Voice = frauen { \globalKyrie \oneVoice \frauenPausenKyrie }
+ \new CueVoice = soloSopran { \globalKyrie \voiceOne \soloSopranMelodieKyrie }
+ \new CueVoice = soloAlt { \globalKyrie \voiceTwo \soloAltMelodieKyrie }
+ \new Voice = sopran { \globalKyrie \voiceOne << \sopranMelodieKyrie \artikulationKyrie >> }
+ \new Voice = alt { \globalKyrie \voiceTwo \altMelodieKyrie }
+ >>
+ \new Lyrics = textAlt { }
+ \new Lyrics = textTenor { }
+ \new Staff <<
+ \clef "bass"
+ \new Voice = maenner { \globalKyrie \oneVoice \maennerPausenKyrie }
+ \new CueVoice = soloTenor { \globalKyrie \voiceOne \soloTenorMelodieKyrie }
+ \new CueVoice = soloBass { \globalKyrie \voiceTwo \soloBassMelodieKyrie }
+ \new Voice = tenor { \globalKyrie \voiceOne \tenorMelodieKyrie }
+ \new Voice = bass { \globalKyrie \voiceTwo << \bassMelodieKyrie \artikulationKyrie >> }
+ >>
+ \new Lyrics = textBass { }
+ \context Lyrics = textAlt \lyricsto alt \textAltKyrie
+ \context Lyrics = textTenor \lyricsto tenor \textTenorKyrie
+ \context Lyrics = textBass \lyricsto bass \textBassKyrie
+ >>
+ \layout {
+ indent = #0
+ }
+ \header {
+ title = "Missa in C"
+ subtitle = "Orgelsolomesse KV 259"
+ composer = "Wolfgang Amadeus Mozart (1756-1791)"
+ piece = "Kyrie"
+ tagline = ##f
+ }
+}
diff --git a/Missa_in_C/parts/artikulation_Kyrie.ly b/Missa_in_C/parts/artikulation_Kyrie.ly
new file mode 100644
index 0000000..c1c41fb
--- /dev/null
+++ b/Missa_in_C/parts/artikulation_Kyrie.ly
@@ -0,0 +1,18 @@
+artikulationKyrie = {
+ s1*4 |
+ s1\f |
+ s1*5 |
+ s1\f |
+ s1*2 |
+ s1\f |
+ s1 |
+ s2 s\f |
+ s1*2 |
+ s1\f |
+ s1*5 |
+ s1\f |
+ s1 |
+ s1\f |
+ s2 s8 s4.\f |
+ s1 | \bar "|."
+}
diff --git a/Missa_in_C/parts/stimmen_Kyrie.ly b/Missa_in_C/parts/stimmen_Kyrie.ly
new file mode 100644
index 0000000..4573871
--- /dev/null
+++ b/Missa_in_C/parts/stimmen_Kyrie.ly
@@ -0,0 +1,234 @@
+\version "2.12"
+
+globalKyrie = {
+ \time 4/4
+ \key c \major
+ \autoBeamOff
+}
+
+frauenPausenKyrie = {
+ s1*3 |
+ s2.. r8 |
+ s1*3 |
+ r8 s s2 r4 |
+ s1 |
+ s2. r4 |
+ s1 |
+ r8 s s2 r4 |
+ R1 |
+ s1*2 |
+ s4 r s2 |
+ s1 |
+ s2. r4 |
+ s1*3 |
+ r8 s s2 r4 |
+ s1 |
+ s2. r4 |
+ s1 |
+ r8 s s2 r4 |
+ s1 |
+ r8 s2.. |
+ s2. r4 | \bar "|."
+}
+
+maennerPausenKyrie = {
+ R1*4 |
+ s1*3 |
+ r8 s s2 r4 |
+ R1*2 |
+ s1 |
+ r8 s s2 r4 |
+ R1 |
+ s1*2 |
+ s4 r s2 |
+ s1 |
+ s2. r4 |
+ s1*3 |
+ r8 s s2 r4 |
+ R1*2 |
+ s1 |
+ r8 s s2 r4 |
+ s1 |
+ r8 s2.. |
+ s2. r4 | \bar "|."
+}
+
+soloSopranMelodieKyrie = \relative c'' {
+ c4 c16[ h a g] g8[ g] g[ g] |
+ g4 a16[ g f e] e8[ e] e[ e] |
+ d16[ h'] h4 c8 d16[ f] f4 e8 |
+ a16[ h c gis] a[ e f e] e8.[ d32 e d8] s8 |
+ s1*4 |
+ d8.[ e16] d[ c] h[ a] g4 fis8 g |
+ g[ e'16 d] c8 h h a s4 |
+ s1 |
+ s8 g g[ h16 a] g4 s |
+ s1 |
+ s2 d'8. d16 d8 e |
+ f[ a,] a h c16[ h c d] e[ d] e[ f] |
+ e8 d s2. |
+ d4 d8 es f16[ es d c] h[ a] h[ a] |
+ c[ h c d] es8 fis, fis g s4 |
+ s1*4 |
+ c8.[ d16] c[ b] a[ gis] a8[ d] cis a |
+ f'16[ e d cis] d8 c c h s4 |
+ s1 |
+ s8 c c[ e16 d] c4 s |
+ s1 |
+ s8 c c[ e16 d] c8 s4. |
+ s1 | \bar "|."
+}
+
+soloAltMelodieKyrie = \relative h' {
+ s1*8 |
+ r2 h8.[ c16] h[ a] g[ fis] |
+ g4 a8 g g fis s4 |
+ s1 |
+ s8 e d[ c] h4 s |
+ s1 |
+ s2 g'8. g16 g4~ |
+ g8 f16[ e] d8 f e16[ f] g4 g8 |
+ g g s2. |
+ g4 g4. f16[ es] d8 f |
+ es16[ f] g4 es8 es d s4 |
+ s1*4 |
+ r2 a'8.[ b16] a[ g] f[ e] |
+ d8 b' a e e d s4 |
+ s1 |
+ s8 a' g f e4 s |
+ s1 |
+ s8 es e h c s4. |
+ s1 | \bar "|."
+}
+
+soloTenorMelodieKyrie = \relative b {
+ s1*11 |
+ s8 b8 h fis g4 s |
+ s1 |
+ s2 h8. h16 h8 cis |
+ d8. e16 f8 d c16 d e d c h c d |
+ c8 h s2. |
+ h4 h8 c d16 es f4 d8 |
+ c16 d es h c8 c c h s4 |
+ s1*7 |
+ s8 es e h c4 s |
+ s1 |
+ s8 a g f e s4. |
+ s1 | \bar "|."
+}
+
+soloBassMelodieKyrie = \relative cis {
+ s1*11 |
+ s8 cis8 d4 g, s |
+ s1 |
+ s2 r4 g'8. g16 |
+ g4 g g g8 g |
+ g g, s2. |
+ r4 g' g g |
+ g g8 g g g, s4 |
+ s1*7 |
+ s8 fis' g gis a4 s |
+ s1 |
+ s8 fis g4 c,8 s4. |
+ s1 | \bar "|."
+}
+
+sopranMelodieKyrie = \relative c'' {
+ s1*4 |
+ c8. c16 c[( h]) a[( g]) g4 g |
+ g8. g16 a[( g]) f[( e]) e4 e |
+ d8. h'16 h8 c d16[( f]) f4( e8) |
+ s d c[( h]) c4 s |
+ s1*2 |
+ c8. c16 h8 h16[( c]) h8[( a]) g4 |
+ s1*2 |
+ g8. g16 g4 s2 |
+ s1 |
+ s2 g8. g16 g4 |
+ s1*2 |
+ c8. 16 c[( h]) a[( g]) g4 g |
+ g8. g16 a[( g]) f[( e]) e4 e |
+ d8. h'16 h8 c d16[( e]) f4( e8) |
+ s d c[( h]) c4 s |
+ s1*2 |
+ f8. f16 e8 e16[( f]) e8[( d]) c4 |
+ s1 |
+ f8. f16 e8 e16[( f]) e8[( d]) c4 |
+ s2 s8 e d4 |
+ e8 e d4 c s | \bar "|."
+}
+
+altMelodieKyrie = \relative e' {
+ s1*4 |
+ e8. e16 e[( g]) f[( e]) e4 e |
+ e8. e16 f[( e]) d[( c]) c4 c |
+ h8. g'16 g8 g g4 g |
+ s8 a g4 g s |
+ s1*2 |
+ g8. g16 fis8 fis e4 d |
+ s1*2 |
+ g8. g16 g4 s2 |
+ s1 |
+ s2 g8. g16 g4 |
+ s1*2 |
+ e8. e16 e[( g]) f[( e]) e4 e |
+ e8. e16 f16[( e]) d[( c]) c4 c |
+ g'8. g16 g8 g g4 g |
+ s8 a g4 g s |
+ s1*2 |
+ f8. f16 g8 e a4 g |
+ s1 |
+ f8. f16 g8 e a4 g |
+ s2 s8 g g4 |
+ g8 g g4 g s | \bar "|."
+}
+
+tenorMelodieKyrie = \relative g {
+ s1*4 |
+ g8. g16 g4 r8 g e c |
+ c'8. c16 c4 r8 g e c |
+ g'8. d'16 d8 e f16[( d]) d4( c8) |
+ s a16[( f']) e8[( d]) c4 s |
+ s1*2 |
+ g8. g16 h8 d, e4 g |
+ s1*2 |
+ g8. g16 g4 s2 |
+ s1 |
+ s2 g8. g16 g4 |
+ s1*2 |
+ g8. g16 g4 r8 g e c |
+ c'8. c16 c4 r8 g e c |
+ g'8. d'16 d8 e f16[( d]) d4( c8) |
+ s a16[( f']) e8[( d]) c4 s |
+ s1*2 |
+ c8. c16 h8 h a4 c |
+ s1 |
+ c8. c16 h8 h a4 c |
+ s2 s8 c c[( h]) |
+ c c c[( h]) c4 s | \bar "|."
+}
+
+bassMelodieKyrie = \relative c {
+ s1*4 |
+ c8. c16 c8 c c4 c |
+ c8. c16 c8 c c4 c |
+ r8 f f e r h h c |
+ s f g4 c, s |
+ s1*2 |
+ e8. e16 d8 d c4 h |
+ s1*2 |
+ g'8. g16 g4 s2 |
+ s1 |
+ s2 g8. g16 g4 |
+ s1*2 |
+ c,8. c16 c8 c c4 c |
+ c8. c16 c8 c c4 c |
+ r8 f f e r h h c |
+ s f g4 c, s |
+ s1*2 |
+ a'8. a16 g8 g f4 e |
+ s1 |
+ a8. a16 g8 g f4 e |
+ s2 s8 c' g4 |
+ c,8 c' g4 c, s | \bar "|."
+}
diff --git a/Missa_in_C/parts/texte_Kyrie.ly b/Missa_in_C/parts/texte_Kyrie.ly
new file mode 100644
index 0000000..ef78768
--- /dev/null
+++ b/Missa_in_C/parts/texte_Kyrie.ly
@@ -0,0 +1,33 @@
+
+textAltKyrie = \lyricmode {
+ Ky -- ri -- e e -- lei -- son,
+ Ky -- ri -- e e -- lei -- son,
+ Ky -- ri -- e e -- lei -- son,
+ e -- lei -- son.
+ Ky -- ri -- e e -- lei -- son,
+ Ky -- ri -- e,
+ Ky -- ri -- e
+ Ky -- ri -- e e -- lei -- son,
+ Ky -- ri -- e e -- lei -- son,
+ Ky -- ri -- e e -- lei -- son,
+ e -- lei -- son.
+ Ky -- ri -- e e -- lei -- son,
+ Ky -- ri -- e e -- lei -- son,
+ e -- lei -- son,
+ e -- lei -- son.
+}
+
+textTenorKyrie = \lyricmode {
+ \repeat unfold 3 { \skip 1 } e -- lei -- son,
+ \repeat unfold 3 { \skip 1 } e -- lei -- son,
+ \repeat unfold 21 { \skip 1 }
+ \repeat unfold 3 { \skip 1 } e -- lei -- son,
+ \repeat unfold 3 { \skip 1 } e -- lei -- son,
+}
+
+textBassKyrie = \lyricmode {
+ \repeat unfold 12 { \skip 1 }
+ e -- lei -- son, e -- lei -- son,
+ \repeat unfold 27 { \skip 1 }
+ e -- lei -- son, e -- lei -- son,
+}