summaryrefslogtreecommitdiff
path: root/Ein_feste_Burg_ist_unser_Gott
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-10-26 09:18:52 +0200
committerErich Eckner <git@eckner.net>2018-10-26 09:18:52 +0200
commit34d49be62d98d3939426a4e4eadfd51c1d52e227 (patch)
treeaf7da9bba8a5f210846abc589dd12aae0df7435d /Ein_feste_Burg_ist_unser_Gott
parent08c94aa389764c083ce42127548d1c3d52bc00c8 (diff)
downloadMusik-34d49be62d98d3939426a4e4eadfd51c1d52e227.tar.xz
Ein_feste_Burg_ist_unser_Gott neu
Diffstat (limited to 'Ein_feste_Burg_ist_unser_Gott')
-rwxr-xr-xEin_feste_Burg_ist_unser_Gott/Ein_feste_Burg_ist_unser_Gott.ly42
-rw-r--r--Ein_feste_Burg_ist_unser_Gott/Makefile23
-rwxr-xr-xEin_feste_Burg_ist_unser_Gott/stimmen.ly64
-rwxr-xr-xEin_feste_Burg_ist_unser_Gott/texte.ly64
4 files changed, 193 insertions, 0 deletions
diff --git a/Ein_feste_Burg_ist_unser_Gott/Ein_feste_Burg_ist_unser_Gott.ly b/Ein_feste_Burg_ist_unser_Gott/Ein_feste_Burg_ist_unser_Gott.ly
new file mode 100755
index 0000000..d9a7ed3
--- /dev/null
+++ b/Ein_feste_Burg_ist_unser_Gott/Ein_feste_Burg_ist_unser_Gott.ly
@@ -0,0 +1,42 @@
+\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 = ""
+}
+\paper {
+ top-margin = 5
+ print-all-headers = ##t
+}
+
+\score {
+ \header {
+ title = "Ein feste Burg ist unser Gott"
+ poet = "Text: Martin Luther"
+ composer = "Melodie: Johann Walter(?)"
+ }
+ \new ChoirStaff <<
+ \new ChordNames { \global \germanChords \akkorde }
+ \new Staff <<
+ \new Voice = "Melodie" { \global \melodie }
+ \new Lyrics \lyricsto "Melodie" { \textI }
+ \new Lyrics \lyricsto "Melodie" { \textIb }
+ \new Lyrics \lyricsto "Melodie" { \textII }
+ \new Lyrics \lyricsto "Melodie" { \textIIb }
+ \new Lyrics \lyricsto "Melodie" { \textIII }
+ \new Lyrics \lyricsto "Melodie" { \textIIIb }
+ \new Lyrics \lyricsto "Melodie" { \textIV }
+ \new Lyrics \lyricsto "Melodie" { \textIVb }
+ >>
+ >>
+ \layout {
+ indent = #0
+ }
+}
diff --git a/Ein_feste_Burg_ist_unser_Gott/Makefile b/Ein_feste_Burg_ist_unser_Gott/Makefile
new file mode 100644
index 0000000..ef6dedf
--- /dev/null
+++ b/Ein_feste_Burg_ist_unser_Gott/Makefile
@@ -0,0 +1,23 @@
+CURDOC=$(shell basename "$(CURDIR)")
+
+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
+
+all: $(CURDOC).pdf
+
+clean:
+ rm -f *.pre
+
+Clean: clean
+ rm -f *.pdf *.midi
+
+%.pre: %.ly
+ sed "s@%spezifisch%@$(SPEZIFISCH)@" "$<" > "$@"
+
+%.pdf: %.pre *.ly
+ lilypond $<
+
diff --git a/Ein_feste_Burg_ist_unser_Gott/stimmen.ly b/Ein_feste_Burg_ist_unser_Gott/stimmen.ly
new file mode 100755
index 0000000..2f0cd3d
--- /dev/null
+++ b/Ein_feste_Burg_ist_unser_Gott/stimmen.ly
@@ -0,0 +1,64 @@
+
+global = {
+ \time 2/2
+ \key c \major
+ \partial 4
+}
+
+melodie = \relative c'' {
+ \repeat volta 2 {
+ c4 |
+ c2 c |
+ g a4 c~( |
+ c h4) a2 |
+ g r4 c4 |
+ h2 a |
+ g a4 f~( |
+ f e4 d2) |
+ c2 r4
+ } c |
+ e4.( f8 g4) a~( |
+ a g2) f4 |
+ g2 c, |
+ g' a |
+ h c |
+ r h |
+ c h |
+ a g |
+ a a |
+ g4 a2 g4 |
+ e2 r4 c' |
+ h2 a |
+ g a4 f~( |
+ f e d2) |
+ c1 | \bar "|."
+}
+
+akkorde = \chordmode {
+ \repeat volta 2 {
+ c4 |
+ f2 c |
+ e:m d4 c |
+ s g d2 |
+ g2. a4:m |
+ e2:m f |
+ c f4 d:m |
+ s2 g |
+ g2.
+ } s4 |
+ c2. f4 |
+ s c2 d4:m |
+ g2 a:m |
+ e:m d |
+ g c |
+ s e |
+ a:m e:m |
+ f c |
+ f a:m |
+ e4:m f2 g4 |
+ c2 s4 c |
+ g2 a:m |
+ e:m f4 d:m7 |
+ s2 g |
+ c1 | \bar "|."
+}
diff --git a/Ein_feste_Burg_ist_unser_Gott/texte.ly b/Ein_feste_Burg_ist_unser_Gott/texte.ly
new file mode 100755
index 0000000..18f5759
--- /dev/null
+++ b/Ein_feste_Burg_ist_unser_Gott/texte.ly
@@ -0,0 +1,64 @@
+
+textI = \lyricmode {
+ \set stanza = #"1. "
+ Ein fes -- te Burg ist un -- ser Gott,
+ ein gu -- te Wehr und Waf -- fen.
+}
+
+textIb = \lyricmode {
+ Er hilft uns frei aus al -- ler Not,
+ die uns jetzt hat be -- trof -- fen.
+ Der alt bö -- se Feind,
+ mit Ernst er's jetzt meint;
+ groß Macht und viel List
+ sein grau -- sam Rüs -- tung ist,
+ auf Erd ist nicht seins -- glei -- chen.
+}
+
+textII = \lyricmode {
+ \set stanza = #"2. "
+ Mit uns -- rer Macht ist nichts ge -- tan,
+ wir sind gar bald ver -- lo -- ren;
+}
+
+textIIb = \lyricmode {
+ es streit für uns der rech -- te Mann,
+ den Gott hat selbst er -- ko -- ren.
+ Fragst du, wer der ist?
+ Er heißt Je -- sus Christ,
+ der Herr Ze -- ba -- oth,
+ und ist kein and -- rer Gott;
+ das Feld muss er be -- hal -- ten.
+}
+
+textIII = \lyricmode {
+ \set stanza = #"3. "
+ Und wenn die Welt voll Teu -- fel wär
+ und wollt uns gar ver -- schlin -- gen,
+}
+
+textIIIb = \lyricmode {
+ so fürch -- ten wir uns nicht so sehr,
+ es soll uns doch ge -- lin -- gen.
+ Der Fürst die -- ser Welt,
+ wie saur er sich stellt,
+ tut er uns doch nichts;
+ das macht, er ist ge -- richt:
+ ein Wört -- lein kann ihn fäl -- len.
+}
+
+textIV = \lyricmode {
+ \set stanza = #"4. "
+ Das Wort sie sol -- len las -- sen stahn
+ und kein Dank da -- zu ha -- ben;
+}
+
+textIVb = \lyricmode {
+ er ist bei uns wohl auf dem Plan
+ mit sei -- nem Geist und Ga -- ben.
+ Neh -- men sie den Leib,
+ Gut, Ehr, Kind und Weib:
+ lass fah -- ren da -- hin,
+ sie ha -- ben's kein Ge -- winn,
+ das Reich muss uns doch blei -- ben.
+}