summaryrefslogtreecommitdiff
path: root/Gott_giebet_Speise_reichlich_und_ueberall
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-01-03 13:12:33 +0100
committerErich Eckner <git@eckner.net>2019-01-03 13:12:33 +0100
commit7fb312da063a20c0477e013dd7de136941bda416 (patch)
tree3cf90939d54320d79fd814219da69b734aac8e74 /Gott_giebet_Speise_reichlich_und_ueberall
parent59f111caaee494be29b07f0a6470c77c43a9d905 (diff)
downloadMusik-7fb312da063a20c0477e013dd7de136941bda416.tar.xz
Gott_giebet_Speise_reichlich_und_ueberall neu
Diffstat (limited to 'Gott_giebet_Speise_reichlich_und_ueberall')
-rw-r--r--Gott_giebet_Speise_reichlich_und_ueberall/Gott_giebet_Speise_reichlich_und_ueberall.ly47
-rw-r--r--Gott_giebet_Speise_reichlich_und_ueberall/Makefile43
-rw-r--r--Gott_giebet_Speise_reichlich_und_ueberall/artikulation.ly8
-rw-r--r--Gott_giebet_Speise_reichlich_und_ueberall/stimmen.ly69
-rw-r--r--Gott_giebet_Speise_reichlich_und_ueberall/texte.ly13
5 files changed, 180 insertions, 0 deletions
diff --git a/Gott_giebet_Speise_reichlich_und_ueberall/Gott_giebet_Speise_reichlich_und_ueberall.ly b/Gott_giebet_Speise_reichlich_und_ueberall/Gott_giebet_Speise_reichlich_und_ueberall.ly
new file mode 100644
index 0000000..a3a85be
--- /dev/null
+++ b/Gott_giebet_Speise_reichlich_und_ueberall/Gott_giebet_Speise_reichlich_und_ueberall.ly
@@ -0,0 +1,47 @@
+\include "deutsch.ly"
+#(ly:set-option 'relative-includes #t)
+\include "artikulation.ly"
+\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 {
+ tagline = ##f
+ title = "Gott giebet Speise reichlich und überall"
+ composer = "Satz: H.P.G."
+ }
+ \layout {
+ indent = #0
+ \context {
+ \Staff
+ \RemoveEmptyStaves
+ \override VerticalAxisGroup #'remove-first = ##t
+ }
+ }
+ \new ChoirStaff <<
+ \set Score.skipBars = ##t
+ \new Staff <<
+ \new Voice = sopran { \global \voiceOne << \sopranMelodie \artikulation >> }
+ \new Voice = alt { \global \voiceTwo \altMelodie }
+ >>
+ \new Lyrics \lyricsto sopran { \text}
+ \new Staff <<
+ \clef "bass"
+ \new Voice = tenor { \global \voiceOne << \tenorMelodie \artikulation >> }
+ \new Voice = bass { \global \voiceTwo \bassMelodie }
+ >>
+ >>
+}
diff --git a/Gott_giebet_Speise_reichlich_und_ueberall/Makefile b/Gott_giebet_Speise_reichlich_und_ueberall/Makefile
new file mode 100644
index 0000000..3fa24ea
--- /dev/null
+++ b/Gott_giebet_Speise_reichlich_und_ueberall/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/Gott_giebet_Speise_reichlich_und_ueberall/artikulation.ly b/Gott_giebet_Speise_reichlich_und_ueberall/artikulation.ly
new file mode 100644
index 0000000..4aa6801
--- /dev/null
+++ b/Gott_giebet_Speise_reichlich_und_ueberall/artikulation.ly
@@ -0,0 +1,8 @@
+artikulation = {
+ s2. |
+ s1. |
+ s2.\breathe s |
+ s1. |
+ s2.\breathe s |
+ s1.*6 | \bar "|."
+}
diff --git a/Gott_giebet_Speise_reichlich_und_ueberall/stimmen.ly b/Gott_giebet_Speise_reichlich_und_ueberall/stimmen.ly
new file mode 100644
index 0000000..dcba672
--- /dev/null
+++ b/Gott_giebet_Speise_reichlich_und_ueberall/stimmen.ly
@@ -0,0 +1,69 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+\version "2.18"
+
+global = {
+ \key f \major
+ %\override Staff.TimeSignature #'style = #'()
+ \time 6/4
+ \autoBeamOff
+ \partial 2.
+}
+
+% Die Stimmen
+
+sopranMelodie = \relative f' {
+ f4 f g |
+ a f2 g4. g8 a4 |
+ b4. b8 b4 a a b |
+ c g2 a4. a8 h4 |
+ c4. c8 c4 g g a |
+ b2 d4 c2 b4 |
+ a2 g4 d'4. c8 b4 |
+ c4. c8 a4 b2 a4 |
+ g2 f4 d'4. c8 b4 |
+ c4. b8 a4 b2 a4 |
+ g2. f | \bar "|."
+}
+
+altMelodie = \relative c' {
+ c4 d e |
+ f c2 e4. e8 f4 |
+ f4. f8 f4 f f f |
+ g e2 f4. f8 d4 |
+ e4. e8 e4 d d f |
+ f2 g4 g2 g4 |
+ g( fis) d f4. f8 d4 |
+ e g f f2 f4 |
+ e2 d4 f4. e8 d4 |
+ e g f f2 f4 |
+ f( e8[ d] e4) f2. | \bar "|."
+}
+
+tenorMelodie = \relative a {
+ a4 a c |
+ c a2 c4. c8 c4 |
+ d4. d8 d4 c c d |
+ e c2 c4. c8 g4 |
+ g4. g8 g4 b b c |
+ d2 b4 es2 d4 |
+ d2 b4 b4. a8 b4 |
+ g4. c8 c4 d2 c4 |
+ c2 a4 b4. g8 f4 |
+ g4. c8 c4 d2 c4 |
+ c2. c | \bar "|."
+}
+
+bassMelodie = \relative f {
+ f4 d c |
+ f f2 c4. c8 f4 |
+ b,4. b8 b4 f f' d |
+ c c2 f4. f8 g4 |
+ c,4. c8 c4 g g' f |
+ b,2 g4 c2 g'4 |
+ d2 g4 b,4. f'8 g4 |
+ c, e f b,2 f'4 |
+ c2 d4 b4. c8 d4 |
+ c e f b,2 f'4 |
+ c2. f | \bar "|."
+}
diff --git a/Gott_giebet_Speise_reichlich_und_ueberall/texte.ly b/Gott_giebet_Speise_reichlich_und_ueberall/texte.ly
new file mode 100644
index 0000000..4b286f6
--- /dev/null
+++ b/Gott_giebet_Speise_reichlich_und_ueberall/texte.ly
@@ -0,0 +1,13 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+text = \lyricmode {
+ Gott gie -- bet Spei -- se reich -- lich und ü -- ber -- all,
+ nach Va -- ters Wei -- se sät -- tigt er all -- zu -- mal
+ er schaf -- fet frühn und spä -- ten Re -- gen,
+ fül -- let uns al -- le mit sei -- nem Se -- gen;
+ fül -- let uns al -- le mit sei -- nem Se -- gen.
+}