summaryrefslogtreecommitdiff
path: root/Kanons
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-09-13 10:24:44 +0200
committerErich Eckner <git@eckner.net>2019-09-13 10:25:18 +0200
commitb307cb249b04686a547a821d0c30a517279fc876 (patch)
tree67d8854b4a1e878acc898a2e4717a483c9afc1af /Kanons
parentd0dc479945a1a4d689e1406c43c5e4f18bc481a1 (diff)
downloadMusik-b307cb249b04686a547a821d0c30a517279fc876.tar.xz
Er_ist_wie_ein_Baum neu
Diffstat (limited to 'Kanons')
-rw-r--r--Kanons/Er_ist_wie_ein_Baum/Er_ist_wie_ein_Baum.ly37
-rw-r--r--Kanons/Er_ist_wie_ein_Baum/Makefile44
-rw-r--r--Kanons/Er_ist_wie_ein_Baum/stimmen.ly50
-rw-r--r--Kanons/Er_ist_wie_ein_Baum/texte.ly12
4 files changed, 143 insertions, 0 deletions
diff --git a/Kanons/Er_ist_wie_ein_Baum/Er_ist_wie_ein_Baum.ly b/Kanons/Er_ist_wie_ein_Baum/Er_ist_wie_ein_Baum.ly
new file mode 100644
index 0000000..b6ef970
--- /dev/null
+++ b/Kanons/Er_ist_wie_ein_Baum/Er_ist_wie_ein_Baum.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%
+
+\pointAndClickOff
+
+\header {
+ tagline = ##f
+}
+\paper {
+ top-margin = 5
+ print-all-headers = ##t
+}
+
+\score {
+ \header {
+ title = "Er ist wie ein Baum"
+ poet = "Text (nach Psalm 1): Christian Stettler"
+ composer = "Musik: Daniel Steger"
+ arranger = "Ostinato: Jochen Steuerwald"
+ }
+ \new ChoirStaff <<
+ \new ChordNames { \global \akkorde }
+ \new Staff <<
+ \new Voice = melodie { \global \melodie }
+ \new Lyrics \lyricsto melodie { \text }
+ >>
+ >>
+ \layout {
+ indent = #0
+ ragged-last = ##f
+ }
+}
diff --git a/Kanons/Er_ist_wie_ein_Baum/Makefile b/Kanons/Er_ist_wie_ein_Baum/Makefile
new file mode 100644
index 0000000..157c845
--- /dev/null
+++ b/Kanons/Er_ist_wie_ein_Baum/Makefile
@@ -0,0 +1,44 @@
+CURDOC=$(shell basename "$(CURDIR)")
+STROPHEN=[1-9]\|1[01]
+
+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
+
+ifeq ($(KLAVIER),1)
+ KLAVIER_REGEX=
+else
+ KLAVIER_REGEX=/%Klavier%/d;
+endif
+
+all: $(CURDOC).pdf
+ pkill -SIGHUP -xf 'mupdf(-x11)? (.*/)?$<' || true
+
+clean:
+ rm -f *.pre
+
+Clean: clean
+ rm -f *.pdf *.midi
+
+%.pre: %.ly
+ sed " \
+ s@%spezifisch%@$(SPEZIFISCH)@ ; \
+ /%STR_\($(STROPHEN)\)%/{ \
+ s/%[A-Z_0-9]\+%//; \
+ p; \
+ d; \
+ }; \
+ /%[A-Z_0-9]\+%/d \
+ " "$<" > "$@"
+
+%.pdf: %.pre *.ly
+ lilypond $<
diff --git a/Kanons/Er_ist_wie_ein_Baum/stimmen.ly b/Kanons/Er_ist_wie_ein_Baum/stimmen.ly
new file mode 100644
index 0000000..98494ed
--- /dev/null
+++ b/Kanons/Er_ist_wie_ein_Baum/stimmen.ly
@@ -0,0 +1,50 @@
+global = {
+ \key f \major
+ \time 4/4
+ \partial 4
+ \autoBeamOff
+}
+
+akkorde = \chordmode { \germanChords
+ \repeat unfold 3 {
+ s4 |
+ d1:m |
+ g:m7 |
+ c:7 |
+ f:7 |
+ b:7 |
+ e:7 |
+ a:7 |
+ d2.:m
+ }
+}
+
+melodie = \relative f' {
+ \repeat volta 2 {
+ f8^\markup { "1." } g |
+ a4 a a f8[ g] |
+ a[ g] f[ a] g4\breathe e8 f |
+ g4 g g e8[ f] |
+ g[ f] e[ g] f4\breathe d8 e |
+ f4 f8[ d] a'4 a8[ f] |
+ g[ f] e[ f] g4\breathe g8 e |
+ a4. b8 a[ g] f[ e] |
+ d2 d4^\fermata r^\markup { "2." } |
+ a'4. a8 d4 a |
+ b2~( b8[ a]) g f |
+ g4. g8 c4 g |
+ a2~ a8\breathe a b c |
+ d2~ d8 c b a |
+ b[ a] g[ a] b4 r |
+ a4. g8 f4 f |
+ a2.^\fermata a8^\markup { "3." } c |
+ d2 d |
+ d d\breathe |
+ c c |
+ c c\breathe |
+ b b |
+ b b |
+ a g |
+ f2.^\fermata
+ }
+}
diff --git a/Kanons/Er_ist_wie_ein_Baum/texte.ly b/Kanons/Er_ist_wie_ein_Baum/texte.ly
new file mode 100644
index 0000000..3bb38b8
--- /dev/null
+++ b/Kanons/Er_ist_wie_ein_Baum/texte.ly
@@ -0,0 +1,12 @@
+text = \lyricmode {
+ Wenn ein Mensch auf Gott sein Le -- ben baut,
+ wenn er Tag und Nacht auf ihn ver -- traut,
+ hat er Zu -- kunft, Hoff -- nung, Le -- bens -- kraft,
+ weiß bei Gott sich ganz ge -- bor -- gen.
+ Er ist wie ein Baum,
+ der am fri -- schen Was -- ser steht
+ und des -- sen weit ge -- spann -- tes Blät -- ter -- dach
+ nie -- mals mehr ver -- geht:
+ Er wird le -- ben, blü -- hen, Far -- ben sprü -- hen,
+ Früch -- te schen -- ken oh -- ne Zahl.
+}