diff options
author | Erich Eckner <git@eckner.net> | 2019-01-03 13:34:14 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-01-03 13:34:14 +0100 |
commit | 2ed05bae0bc2d8a5b24595533925aa4514f0be5e (patch) | |
tree | b0958c885f5a0ada1ef6de6d5198c016e05eeca4 | |
parent | 6cdbc32210264b3876273abe790fda0131620589 (diff) | |
download | Musik-2ed05bae0bc2d8a5b24595533925aa4514f0be5e.tar.xz |
Nun_danket_alle_Gott_ neu
-rw-r--r-- | Nun_danket_alle_Gott_/Makefile | 43 | ||||
-rw-r--r-- | Nun_danket_alle_Gott_/Nun_danket_alle_Gott_.ly | 30 | ||||
-rw-r--r-- | Nun_danket_alle_Gott_/stimmen.ly | 31 | ||||
-rw-r--r-- | Nun_danket_alle_Gott_/texte.ly | 15 |
4 files changed, 119 insertions, 0 deletions
diff --git a/Nun_danket_alle_Gott_/Makefile b/Nun_danket_alle_Gott_/Makefile new file mode 100644 index 0000000..3fa24ea --- /dev/null +++ b/Nun_danket_alle_Gott_/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/Nun_danket_alle_Gott_/Nun_danket_alle_Gott_.ly b/Nun_danket_alle_Gott_/Nun_danket_alle_Gott_.ly new file mode 100644 index 0000000..814f421 --- /dev/null +++ b/Nun_danket_alle_Gott_/Nun_danket_alle_Gott_.ly @@ -0,0 +1,30 @@ +\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 +} + +\score { + \new ChoirStaff << + \set Score.skipBars = ##t + \new Staff << + \new Voice = melodie { \global \melodie } + >> + \new Lyrics \lyricsto melodie { \textA } + \new Lyrics \lyricsto melodie { \textB } + >> + \layout { + indent = #0 + } +} diff --git a/Nun_danket_alle_Gott_/stimmen.ly b/Nun_danket_alle_Gott_/stimmen.ly new file mode 100644 index 0000000..708b3c5 --- /dev/null +++ b/Nun_danket_alle_Gott_/stimmen.ly @@ -0,0 +1,31 @@ +%some settings% vim: ai sw=2 lbr nu et + +\version "2.12" + +global = { + \key f \major + \time 4/4 + \autoBeamOff + \partial 4 +} + +% Die Stimmen + +melodie = \relative c'' { + \repeat volta 2 { + c4 | + c c d d | + c2 r4 a | + b a g a | + g2 f4 + } + g | + g g a a | + g2 r4 g | + a c c h | + c2 r4 c | + d c b a | + b2 r4 a | + g a g g | + f2 r4 \bar "|." +} diff --git a/Nun_danket_alle_Gott_/texte.ly b/Nun_danket_alle_Gott_/texte.ly new file mode 100644 index 0000000..8d398e2 --- /dev/null +++ b/Nun_danket_alle_Gott_/texte.ly @@ -0,0 +1,15 @@ +%some settings% vim: ai sw=2 lbr nu et + +% Abkürzungen + +% Die Textaufteilungen + +textA = \lyrics { + Nun dan -- ket al -- le Gott mit Her -- zen, Mund und Hän -- den, +} + +textB = \lyrics { + der gro -- ße Din -- ge tut an uns und al -- len En -- den; + der uns von Mut -- ter -- leib und Kin -- des -- bei -- nen an + un zäh -- lig viel zu gut bis hier -- her hat ge -- tan. +} |