diff options
Diffstat (limited to 'Kanons')
4 files changed, 102 insertions, 0 deletions
diff --git a/Kanons/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/Der_Herrgott_laesst_wachsen_das_taegliche_Brot.ly b/Kanons/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/Der_Herrgott_laesst_wachsen_das_taegliche_Brot.ly new file mode 100644 index 0000000..294e488 --- /dev/null +++ b/Kanons/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/Der_Herrgott_laesst_wachsen_das_taegliche_Brot.ly @@ -0,0 +1,35 @@ +\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 = "Der Herrgot lässt wachsen das tägliche Brot" + } + \new Staff << + \new Voice = melodie { \global \melodie } + \new Lyrics \lyricsto melodie { \text } + >> + \layout { + indent = #0 + \context { + \Staff + \RemoveEmptyStaves + \override VerticalAxisGroup #'remove-first = ##t + } + } +} diff --git a/Kanons/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/Makefile b/Kanons/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/Makefile new file mode 100644 index 0000000..3fa24ea --- /dev/null +++ b/Kanons/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/Makefile @@ -0,0 +1,43 @@ +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 + +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/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/stimmen.ly b/Kanons/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/stimmen.ly new file mode 100644 index 0000000..b76142c --- /dev/null +++ b/Kanons/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/stimmen.ly @@ -0,0 +1,20 @@ +global = { + \key g \major + \time 3/4 + \autoBeamOff + \partial 4 +} + +melodie = \relative a' { + \repeat volta 2 { + a4^\markup "1." | + d d d | + a8[ h] a4 fis | + g fis e | + fis2^\fermata fis4^\markup "2." | + h a g | + fis8[ g] a4 a | + d,8[ e] fis[ d] e4 | + d2^\fermata + } +} diff --git a/Kanons/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/texte.ly b/Kanons/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/texte.ly new file mode 100644 index 0000000..17e3a14 --- /dev/null +++ b/Kanons/Der_Herrgott_laesst_wachsen_das_taegliche_Brot/texte.ly @@ -0,0 +1,4 @@ +text = \lyricmode { + Der Herr -- gott lässt wach -- sen das täg -- li -- che Brot; + wir wol -- len ihm dan -- ken; er hilft uns aus Not. +} |