summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Du_Morgenstern_du_Licht_vom_Licht/Du_Morgenstern_du_Licht_vom_Licht.ly37
-rw-r--r--Du_Morgenstern_du_Licht_vom_Licht/Makefile23
-rw-r--r--Du_Morgenstern_du_Licht_vom_Licht/stimmen.ly25
-rw-r--r--Du_Morgenstern_du_Licht_vom_Licht/texte.ly37
4 files changed, 122 insertions, 0 deletions
diff --git a/Du_Morgenstern_du_Licht_vom_Licht/Du_Morgenstern_du_Licht_vom_Licht.ly b/Du_Morgenstern_du_Licht_vom_Licht/Du_Morgenstern_du_Licht_vom_Licht.ly
new file mode 100644
index 0000000..0d5bbda
--- /dev/null
+++ b/Du_Morgenstern_du_Licht_vom_Licht/Du_Morgenstern_du_Licht_vom_Licht.ly
@@ -0,0 +1,37 @@
+\include "deutsch.ly"
+#(ly:set-option 'relative-includes #t)
+\include "stimmen.ly"
+\include "texte.ly"
+#(ly:set-option 'relative-includes #f)
+
+%spezifisch%
+
+\header {
+ tagline = ""
+}
+\paper {
+ top-margin = 5
+ print-all-headers = ##t
+}
+
+\pointAndClickOff
+
+\score {
+ \header {
+ title = "Du Morgenstern, du Licht vom Licht"
+ }
+ \new ChoirStaff <<
+ \set Score.skipBars = ##t
+ \new ChordNames { \global \germanChords \akkorde }
+ \new Staff <<
+ \new Voice = melodie { \global \melodie }
+ >>
+ \new Lyrics \lyricsto melodie { \textI }
+ \new Lyrics \lyricsto melodie { \textII }
+ \new Lyrics \lyricsto melodie { \textIII }
+ \new Lyrics \lyricsto melodie { \textIV }
+ >>
+ \layout {
+% indent = #0
+ }
+}
diff --git a/Du_Morgenstern_du_Licht_vom_Licht/Makefile b/Du_Morgenstern_du_Licht_vom_Licht/Makefile
new file mode 100644
index 0000000..ef6dedf
--- /dev/null
+++ b/Du_Morgenstern_du_Licht_vom_Licht/Makefile
@@ -0,0 +1,23 @@
+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
+
+all: $(CURDOC).pdf
+
+clean:
+ rm -f *.pre
+
+Clean: clean
+ rm -f *.pdf *.midi
+
+%.pre: %.ly
+ sed "s@%spezifisch%@$(SPEZIFISCH)@" "$<" > "$@"
+
+%.pdf: %.pre *.ly
+ lilypond $<
+
diff --git a/Du_Morgenstern_du_Licht_vom_Licht/stimmen.ly b/Du_Morgenstern_du_Licht_vom_Licht/stimmen.ly
new file mode 100644
index 0000000..b7fdff5
--- /dev/null
+++ b/Du_Morgenstern_du_Licht_vom_Licht/stimmen.ly
@@ -0,0 +1,25 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+ \version "2.18"
+
+ global = {
+ \key d \major
+ %\override Staff.TimeSignature #'style = #'()
+ \time 47/4
+ \override Staff.TimeSignature.stencil = ##f
+ \autoBeamOff
+ }
+
+% Die Stimmen
+
+ akkorde = \chordmode {
+ d2. d2 g d1 d2 \bar ""
+ a e a1 h:m \bar ""
+ e2:m fis h:m g e:m a e:m d a d1 | \bar "|."
+ }
+
+ melodie = \relative d' {
+ d4 d d a' a h h a2 r4 a a d
+ cis a h h a2 r4 a d4. cis8 h4 a
+ h a fis2\breathe fis h h a g a4( fis) e2 d1 | \bar "|."
+ }
diff --git a/Du_Morgenstern_du_Licht_vom_Licht/texte.ly b/Du_Morgenstern_du_Licht_vom_Licht/texte.ly
new file mode 100644
index 0000000..04510d6
--- /dev/null
+++ b/Du_Morgenstern_du_Licht_vom_Licht/texte.ly
@@ -0,0 +1,37 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+ textI = \lyricmode {
+ \set stanza = "1."
+ Du Mor -- gen -- stern, du Licht vom Licht,
+ das durch die Fins -- ter -- nis -- se bricht,
+ du gingst vor al -- ler Zei -- ten Lauf
+ in un -- er -- schaff -- ner Klar -- heit auf.
+ }
+
+ textII = \lyricmode {
+ \set stanza = "2."
+ Du Le -- bens -- quell, wir dan -- ken dir,
+ auf dich, Le -- bend' -- ger, hof -- fen wir;
+ denn du durch -- drangst des To -- des Nacht,
+ hast Sieg und Le -- ben uns ge -- bracht.
+ }
+
+ textIII = \lyricmode {
+ \set stanza = "3."
+ Fu ew -- ge Wahr -- heit, Got -- tes Bild,
+ der du den Va -- ter uns ent -- hüllt,
+ du kamst he -- rab ins Er -- den -- tal
+ mit dei -- ner Gott -- er -- kennt -- nis Strahl.
+ }
+
+ textIV = \lyricmode {
+ \set stanza = "4."
+ Bleib bei uns, Herr, ver -- lass uns nicht,
+ fphr uns durch Fins -- ter -- nis zum Licht,
+ bleib auch am A -- bend die -- ser Welt
+ als Hilf und Hort uns zu -- ge -- stellt.
+ }