summaryrefslogtreecommitdiff
path: root/Kanons
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-10-12 22:45:31 +0200
committerErich Eckner <git@eckner.net>2017-10-12 22:46:11 +0200
commit0e85d74a3cb27f272c12bf03f1733d289a704da5 (patch)
tree243b8f3f6f1308841ab8fd2e26bf6365c506fc00 /Kanons
parentbac50a89a4c54f4db25af941cfa65491e26bc3d6 (diff)
downloadMusik-0e85d74a3cb27f272c12bf03f1733d289a704da5.tar.xz
Gottes_Wort_ist_wie_Licht_in_der_Nacht neu
Diffstat (limited to 'Kanons')
-rw-r--r--Kanons/Gottes_Wort_ist_wie_Licht_in_der_Nacht/Gottes_Wort_ist_wie_Licht_in_der_Nacht.ly48
-rw-r--r--Kanons/Gottes_Wort_ist_wie_Licht_in_der_Nacht/Makefile23
-rw-r--r--Kanons/Gottes_Wort_ist_wie_Licht_in_der_Nacht/stimmen.ly38
-rw-r--r--Kanons/Gottes_Wort_ist_wie_Licht_in_der_Nacht/texte.ly12
4 files changed, 121 insertions, 0 deletions
diff --git a/Kanons/Gottes_Wort_ist_wie_Licht_in_der_Nacht/Gottes_Wort_ist_wie_Licht_in_der_Nacht.ly b/Kanons/Gottes_Wort_ist_wie_Licht_in_der_Nacht/Gottes_Wort_ist_wie_Licht_in_der_Nacht.ly
new file mode 100644
index 0000000..a20110c
--- /dev/null
+++ b/Kanons/Gottes_Wort_ist_wie_Licht_in_der_Nacht/Gottes_Wort_ist_wie_Licht_in_der_Nacht.ly
@@ -0,0 +1,48 @@
+\include "deutsch.ly"
+#(ly:set-option 'relative-includes #t)
+\include "stimmen.ly"
+\include "texte.ly"
+#(ly:set-option 'relative-includes #f)
+
+%spezifisch%
+
+\pointAndClickOff
+
+\header {
+ tagline = ""
+}
+\paper {
+ top-margin = 5
+ print-all-headers = ##t
+}
+
+\score {
+ \header {
+ title = "Gottes Wort ist wie Licht in der Nacht"
+ poet = "Text: Hans-Hermann Bittger 1983"
+ composer = "Melodie: Joseph Jacobsen 1935"
+ tagline = ""
+ }
+ \new ChoirStaff <<
+ \set Score.skipBars = ##t
+ \new ChordNames <<
+ \global \akkorde
+ >>
+ \new Staff <<
+ \new Voice = melodie { \global \melodie }
+ >>
+ \new Lyrics = text { }
+
+ \context Lyrics = text \lyricsto melodie { \text }
+ >>
+ \layout {
+ indent = #0
+ \context {
+ \Staff
+ \RemoveEmptyStaves
+ \override VerticalAxisGroup #'remove-first = ##t
+ }
+ ragged-last = ##f
+ }
+}
+
diff --git a/Kanons/Gottes_Wort_ist_wie_Licht_in_der_Nacht/Makefile b/Kanons/Gottes_Wort_ist_wie_Licht_in_der_Nacht/Makefile
new file mode 100644
index 0000000..ef6dedf
--- /dev/null
+++ b/Kanons/Gottes_Wort_ist_wie_Licht_in_der_Nacht/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/Kanons/Gottes_Wort_ist_wie_Licht_in_der_Nacht/stimmen.ly b/Kanons/Gottes_Wort_ist_wie_Licht_in_der_Nacht/stimmen.ly
new file mode 100644
index 0000000..bd69cbd
--- /dev/null
+++ b/Kanons/Gottes_Wort_ist_wie_Licht_in_der_Nacht/stimmen.ly
@@ -0,0 +1,38 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+ \version "2.18"
+
+ global = {
+ \key e \minor
+ %\override Staff.TimeSignature #'style = #'()
+ \time 4/4
+ \autoBeamOff
+ \partial 4
+ }
+
+ akkorde = \chordmode {
+ \germanChords
+ h4:7 |
+ e1:m |
+ a2:m e:m |
+ d1 |
+ e2.:m h4:7 |
+ e1:m |
+ a2:m e:m |
+ d1 |
+ e2:m h4:7
+ }
+
+% Die Stimmen
+
+ melodie = \relative h {
+ h8 h |
+ e4 e8 fis g4 fis8 g |
+ e2. e8 e |
+ a4 a8 h c4 h8 a |
+ h2.^\fermata h8 a |
+ g4 g8 a h4 c8 h |
+ a c h a g4 g |
+ fis fis8 g a4 g8 fis |
+ g fis e2^\fermata \bar "|."
+ }
diff --git a/Kanons/Gottes_Wort_ist_wie_Licht_in_der_Nacht/texte.ly b/Kanons/Gottes_Wort_ist_wie_Licht_in_der_Nacht/texte.ly
new file mode 100644
index 0000000..b4c97fa
--- /dev/null
+++ b/Kanons/Gottes_Wort_ist_wie_Licht_in_der_Nacht/texte.ly
@@ -0,0 +1,12 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+ text = \lyricmode {
+ Got -- tes Wort ist wie Licht in der Nacht;
+ es hat Hoff -- nung und Zu -- kunft ge -- bracht;
+ es gibt Trost, es gibt Halt in Be -- dräng -- nis, Not und Ängs -- ten,
+ ist wie ein Stern in der Dun -- kel -- heit.
+ }