summaryrefslogtreecommitdiff
path: root/Kanons
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-12-08 22:51:51 +0100
committerErich Eckner <git@eckner.net>2017-12-08 22:51:51 +0100
commitc26e4d2359faf5640d94f3e0742f41a9b0a4428d (patch)
tree28b8311da9c03c68c158c3575522016617ed1494 /Kanons
parent97cb805ae145ce280278df43f2c7818bf5b53221 (diff)
downloadMusik-c26e4d2359faf5640d94f3e0742f41a9b0a4428d.tar.xz
Mache_dich_auf_und_werde_Licht neu
Diffstat (limited to 'Kanons')
-rw-r--r--Kanons/Mache_dich_auf_und_werde_Licht/Mache_dich_auf_und_werde_Licht.ly36
-rw-r--r--Kanons/Mache_dich_auf_und_werde_Licht/Makefile23
-rw-r--r--Kanons/Mache_dich_auf_und_werde_Licht/stimmen.ly30
-rw-r--r--Kanons/Mache_dich_auf_und_werde_Licht/texte.ly12
4 files changed, 101 insertions, 0 deletions
diff --git a/Kanons/Mache_dich_auf_und_werde_Licht/Mache_dich_auf_und_werde_Licht.ly b/Kanons/Mache_dich_auf_und_werde_Licht/Mache_dich_auf_und_werde_Licht.ly
new file mode 100644
index 0000000..a82ebc0
--- /dev/null
+++ b/Kanons/Mache_dich_auf_und_werde_Licht/Mache_dich_auf_und_werde_Licht.ly
@@ -0,0 +1,36 @@
+\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 = "Mache dich auf und werde licht"
+ poet = "Text: Jesaja 60,1"
+ composer = "Kanon für 4 Stimmen: Kommunität Gnadenthal 1972"
+ }
+ \new ChoirStaff <<
+ \set Score.skipBars = ##t
+ \new ChordNames { \global \germanChords \akkorde }
+ \new Staff <<
+ \new Voice = melodie { \global \melodie }
+ >>
+ \new Lyrics \lyricsto melodie { \text }
+ >>
+ \layout {
+% indent = #0
+ }
+}
diff --git a/Kanons/Mache_dich_auf_und_werde_Licht/Makefile b/Kanons/Mache_dich_auf_und_werde_Licht/Makefile
new file mode 100644
index 0000000..ef6dedf
--- /dev/null
+++ b/Kanons/Mache_dich_auf_und_werde_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/Kanons/Mache_dich_auf_und_werde_Licht/stimmen.ly b/Kanons/Mache_dich_auf_und_werde_Licht/stimmen.ly
new file mode 100644
index 0000000..76a2922
--- /dev/null
+++ b/Kanons/Mache_dich_auf_und_werde_Licht/stimmen.ly
@@ -0,0 +1,30 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+ \version "2.18"
+
+ global = {
+ \key c \major
+ %\override Staff.TimeSignature #'style = #'()
+ \time 4/4
+ \autoBeamOff
+ }
+
+% Die Stimmen
+
+ akkorde = \chordmode {
+ \repeat unfold 4 {
+ a2:m d:m |
+ g:7 c |
+ }
+ }
+
+ melodie = \relative c' {
+ c4^\markup { "1." } c8 c d4 d |
+ g, g c2^\fermata |
+ e4^\markup { "2." } e8 e f4 f |
+ d4 d e2^\fermata |
+ c'4^\markup { "3." } c8 c d[( c]) h[( a]) |
+ g4 g g2^\fermata |
+ g^\markup { "3." } a |
+ h c | \bar ":|."
+ }
diff --git a/Kanons/Mache_dich_auf_und_werde_Licht/texte.ly b/Kanons/Mache_dich_auf_und_werde_Licht/texte.ly
new file mode 100644
index 0000000..96d4402
--- /dev/null
+++ b/Kanons/Mache_dich_auf_und_werde_Licht/texte.ly
@@ -0,0 +1,12 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+ text = \lyricmode {
+ \repeat unfold 2 {
+ Ma -- che dich auf und wer -- de licht!
+ }
+ Ma -- che dich auf und wer -- de licht; denn dein Licht kommt.
+ }