diff options
-rw-r--r-- | Wir_wuenschen_Gottes_Segen/Makefile | 43 | ||||
-rw-r--r-- | Wir_wuenschen_Gottes_Segen/Wir_wuenschen_Gottes_Segen.ly | 42 | ||||
-rw-r--r-- | Wir_wuenschen_Gottes_Segen/stimmen.ly | 97 | ||||
-rw-r--r-- | Wir_wuenschen_Gottes_Segen/texte.ly | 19 |
4 files changed, 201 insertions, 0 deletions
diff --git a/Wir_wuenschen_Gottes_Segen/Makefile b/Wir_wuenschen_Gottes_Segen/Makefile new file mode 100644 index 0000000..b888508 --- /dev/null +++ b/Wir_wuenschen_Gottes_Segen/Makefile @@ -0,0 +1,43 @@ +CURDOC=$(shell basename "$(CURDIR)") +TRANSPOSE=c +VARIANTE=1 + +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)@ ; \ + $(KLAVIER_REGEX) \ + $(MIDI_REGEX) \ + s@%TRANSPOSE%@$(TRANSPOSE)@g; \ + s@%VARIANTE_$(VARIANTE)%@@g; \ + " "$<" > "$@" + +%.pdf: %.pre stimmen.pre texte.ly + lilypond $< diff --git a/Wir_wuenschen_Gottes_Segen/Wir_wuenschen_Gottes_Segen.ly b/Wir_wuenschen_Gottes_Segen/Wir_wuenschen_Gottes_Segen.ly new file mode 100644 index 0000000..6590667 --- /dev/null +++ b/Wir_wuenschen_Gottes_Segen/Wir_wuenschen_Gottes_Segen.ly @@ -0,0 +1,42 @@ +\include "deutsch.ly" +#(ly:set-option 'relative-includes #t) +\include "stimmen.pre" +\include "texte.ly" +#(ly:set-option 'relative-includes #f) + +%spezifisch% + +\paper { + top-margin = 5 + print-all-headers = ##t +} + +\header { + tagline = ##f +} +\pointAndClickOff + +\score { + \header { + title = "Wir wünschen Gottes Segen" + poet = "Text: Dagmar Heizmann-Leucke" + composer = "Musik: Klaus Heizmann" + } + \new ChoirStaff << + \set Score.skipBars = ##t + \new Staff << + \new Voice = sopran { \voiceOne \sopranMelodie } + \new Voice = alt { \voiceTwo \altMelodie } + >> + \new Lyrics \lyricsto alt { \textI } + \new Lyrics \lyricsto alt { \textII } + \new Staff << + \clef "bass" + \new Voice = tenor { \voiceOne \tenorMelodie } + \new Voice = bass { \voiceTwo \bassMelodie } + >> + >> + \layout { + indent = #0 + } +} diff --git a/Wir_wuenschen_Gottes_Segen/stimmen.ly b/Wir_wuenschen_Gottes_Segen/stimmen.ly new file mode 100644 index 0000000..dc25231 --- /dev/null +++ b/Wir_wuenschen_Gottes_Segen/stimmen.ly @@ -0,0 +1,97 @@ +%some settings% vim: ai sw=2 lbr nu et + +\version "2.12" + +global = { + \key f \major + %\override Staff.TimeSignature #'style = #'() + \time 2/2 + \autoBeamOff + \partial 4 +} + +% Die Stimmen + +sopranMelodie = \relative f' { + \global + f8[ g] | + a4 a g f | + g c2 c4 | + c b f g | + a g2 a8[ b] | + c4 c c c | + d d b a | + g2 f | + g2. f8 g | + a4 a g f | + g c2 c4 | + c b f g | + a g2 a8[ b] | + c4 c c c | + d d b a | + g2 g | + f2. \bar "|." +} + +altMelodie = \relative f' { + \global + f8[ g] | + f4 f f f | + g g2 g4 | + f f f f | + f e2 e4 | + e e e e | + f f f f | + d2 d | + e2. f8 g | + f4 f f f | + g g2 g4 | + f f f f| + f e2 e4 | + e e e e | + f f f f | + d2 e | + c2. \bar "|." +} + +tenorMelodie = \relative a { + \global + a8[ b] | + c4 c b a | + c c2 c4 | + b b b b | + c c2 c8[ b] | + a4 a a g | + f f g a | + b2 a | + g2. a8 b | + c4 c b a | + c c2 c4 | + b b b b | + c c2 c8[ b] | + a4 a a g | + f f g a | + b2 b | + a2. | \bar "|." +} + +bassMelodie = \relative f { + \global + f4 | + f f f f | + e e2 e4 | + d d d d | + c c2 c4 | + a a a a | + b b b b | + b2 b | + c2. f8 f | + f4 f f f | + e e2 e4 | + d d d d | + c c2 c4 | + a a a a | + b b b b | + c2 c | + f2. \bar "|." +} diff --git a/Wir_wuenschen_Gottes_Segen/texte.ly b/Wir_wuenschen_Gottes_Segen/texte.ly new file mode 100644 index 0000000..ec98d87 --- /dev/null +++ b/Wir_wuenschen_Gottes_Segen/texte.ly @@ -0,0 +1,19 @@ +textI = \lyrics { + \set stanza = "1." + Wir wün -- schen Got -- tes Se -- gen + auf al -- len dei -- nen We -- gen + im neu -- en Le -- bens -- jahr, das of -- fen vor dir liegt. + Gott wird dich zu al -- len Zei -- ten + mit sei -- nen Hän -- den lei -- ten, + weil sei -- ne gro -- ße Lie -- be dich ganz fest um -- gibt. +} + +textII = \lyrics { + \set stanza = "2." + Bei Gott bis du ge -- bor -- gen _ + heu -- te und auch mor -- gen. + Sein Frie -- de und sein Schut sind um dich Tag für Tag. + Du kannst ihm ganz fest ver -- trau -- en, + mit ihm die Zu -- kunft bau -- en, + denn Gott ist stest bei dir, was im -- mer kom -- men mag. +} |