summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2016-01-29 10:41:12 +0100
committerErich Eckner <git@eckner.net>2016-01-29 10:41:12 +0100
commit17fd05573024731cffa1259cd1142f8f727cbe0f (patch)
tree51c121c3f522e290a39f375e29ccda4c0441bcbc
parent6e9ba6cd9e94e2c76c07d6784b0a25b7a2e839d0 (diff)
downloadMusik-17fd05573024731cffa1259cd1142f8f727cbe0f.tar.xz
Deutsche_Messe angefangen
-rw-r--r--Deutsche_Messe/Deutsche_Messe.ly54
-rw-r--r--Deutsche_Messe/stimmen.ly91
-rw-r--r--Deutsche_Messe/texte.ly27
3 files changed, 172 insertions, 0 deletions
diff --git a/Deutsche_Messe/Deutsche_Messe.ly b/Deutsche_Messe/Deutsche_Messe.ly
new file mode 100644
index 0000000..b7e57f6
--- /dev/null
+++ b/Deutsche_Messe/Deutsche_Messe.ly
@@ -0,0 +1,54 @@
+\include "deutsch.ly"
+\include "stimmen.ly"
+\include "texte.ly"
+
+\pointAndClickOff
+
+#(set! paper-alist (cons '("kindle" . (cons (* 210 mm) (* 130 mm))) paper-alist))
+#(set-default-paper-size "kindle")
+
+\book {
+
+\paper {
+ top-margin = 5
+ print-all-headers = ##t
+}
+\header {
+ title = "Deutsche Messe"
+ subtitle = "D872"
+ composer = "Franz Schubert (1797-1828)"
+ poet = "Text: Johann Philipp Neumann (1774-1849)"
+ tagline = ##f
+}
+
+\markup { Wohin soll ich mich wenden: Seite \page-ref #'Wohin "0" "?" }
+
+\score { % Wohin % {{{
+ \new ChoirStaff <<
+ \set Score.skipBars = ##t
+ \new Staff <<
+ \label #'Wohin
+ \new Voice = sopran { \globalWohin \voiceOne \sopranMelodieWohin }
+ \new Voice = alt { \globalWohin \voiceTwo \altMelodieWohin }
+ >>
+ \new Lyrics \lyricsto sopran { \textWohinI }
+ \new Lyrics \lyricsto sopran { \textWohinII }
+ \new Lyrics \lyricsto sopran { \textWohinIII }
+ \new Staff <<
+ \new Voice = tenor { \clef "bass" \globalWohin \voiceOne \tenorMelodieWohin }
+ \new Voice = bass { \clef "bass" \globalWohin \voiceTwo \bassMelodieWohin }
+ >>
+ >>
+ \layout {
+ indent = #0
+ }
+ \header {
+ title = "1. Wohin soll ich mich wenden"
+ subtitle = ##f
+ composer = ##f
+ poet = ##f
+ }
+} % }}}
+
+}
+
diff --git a/Deutsche_Messe/stimmen.ly b/Deutsche_Messe/stimmen.ly
new file mode 100644
index 0000000..0d2f974
--- /dev/null
+++ b/Deutsche_Messe/stimmen.ly
@@ -0,0 +1,91 @@
+\version "2.12"
+
+% Wohin % {{{
+globalWohin = {
+ \time 4/4
+ \key f \major
+ \autoBeamOff
+ \partial 4
+}
+
+sopranMelodieWohin = \relative a' {
+ a4^\p |
+ a4. a8 a4 c |
+ a2 g4 g |
+ a4. g8 f4 b8[ a] |
+ g2 a4^\fermata\breathe a4 |
+ a4. a8 a4 c |
+ a2 g4 g |
+ a4. g8 f4 b8[ a] |
+ g2( a4)^\fermata\breathe c^\f |
+ f4. e8 d4 c |
+ c( d) c c8[^\p a] |
+ f4 f f8[ d'] c[ b] |
+ a2 g4\breathe c^\f |
+ f4.e8 d4 c |
+ c( d) c a8[^\p c] |
+ c4. b8 a4 g |
+ f2. \bar "|."
+}
+
+altMelodieWohin = \relative f' {
+ f4 |
+ f4. f8 f4 f |
+ f2 e4 e |
+ e4. e8 d4 g8[ f] |
+ f[ e d e] f4 f |
+ f4. f8 f4 f |
+ f2 e4 e |
+ e4. e8 d4 g8[ f] |
+ f[( e d e] f4) f |
+ f4. f8 f4 a |
+ a( b) a f |
+ f es d g |
+ f2 e4 f |
+ f4. f8 f4 a |
+ a( b) a f |
+ f4. f8 f4 e |
+ f2. \bar "|."
+}
+
+tenorMelodieWohin = \relative c' {
+ c4^\p |
+ c4. c8 c4 c |
+ c2 c4 c |
+ a4. a8 a4 d8[ f] |
+ c2 c4\breathe c |
+ c4. c8 c4 c |
+ c2 c4 c |
+ a4. a8 a4 d8[ f] |
+ c2.\breathe c4^\f |
+ c4. c8 d4 f |
+ f2 f4 a,^\p |
+ c a b d |
+ c2 c4\breathe c4^\f |
+ c4. c8 d4 f |
+ f2 f4 c8[^\p es] |
+ es4. d8 c4 b |
+ a2. \bar "|."
+}
+
+bassMelodieWohin = \relative f {
+ f4 |
+ f4. f8 f4 a |
+ c,2 c4 c |
+ cis4. cis8 d4 g, |
+ c2 f4_\fermata f |
+ f4. f8 f4 a |
+ c,2 c4 c |
+ cis4. cis8 d4 g, |
+ c2( f4)_\fermata a |
+ a4. a8 b4 f |
+ b2 f4 f |
+ a, c b g |
+ c2 c4 a' |
+ a4. a8 b4 f |
+ b2 f4 f |
+ b,4. b8 c4 c |
+ f2. \bar "|."
+}
+% }}}
+
diff --git a/Deutsche_Messe/texte.ly b/Deutsche_Messe/texte.ly
new file mode 100644
index 0000000..a674df0
--- /dev/null
+++ b/Deutsche_Messe/texte.ly
@@ -0,0 +1,27 @@
+
+% Wohin % {{{
+textWohinI = \lyricmode {
+ \set stanza = "1."
+ Wo -- hin soll ich mich wen -- den, wenn Gram und Schmerz mich drü -- cken?
+ Wem künd' ich mein Ent -- zü -- cken, wenn freu -- dig pocht mein Herz? __
+ Zu dir, zu dir, o Va -- ter komm ich in Freud und Lei -- den,
+ du sen -- dest ja die Freu -- den, du hei -- lest je -- den Schmerz.
+}
+
+textWohinII = \lyricmode {
+ \set stanza = "2."
+ Ach, wenn ich dich nicht hät -- te, was wär' mein Erd' und Him -- mel?
+ Ein Bann -- ort je -- de Stät -- te, ich selbst in Zu -- falls -- hand. __
+ Du bist's, der mei -- nen We -- gen ein sich' -- res Ziel ver -- lei -- het,
+ und Erd' und Him -- mel wei -- het zu sü -- ßem Hei -- mat -- land.
+}
+
+textWohinIII = \lyricmode {
+ \set stanza = "3."
+ Doch darf ich dir mich na -- hen, mit man -- cher Schuld be -- la -- den?
+ Wer auf der Er -- de Pfa -- den ist dei -- nem Au -- ge rein? __
+ Mit kind - li -- chem Ver -- trau -- en eil' ich in dei -- ne Ar -- me,
+ fleh' reu -- er -- füllt: Er -- bar -- me, er -- barm', o Herr, dich mein!
+}
+% }}}
+