summaryrefslogtreecommitdiff
path: root/Freuet_euch_ihr_Christen_alle
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-11-08 23:41:20 +0100
committerErich Eckner <git@eckner.net>2018-11-08 23:41:20 +0100
commitc316e05a6b4eafaa5278c0e23f3b437a5511740c (patch)
treeff612a21512fdfce61c10fde1f7485641c4a7f5f /Freuet_euch_ihr_Christen_alle
parentd9c24ca942a1df12e8d5d2483b0d3fb3cbe761f7 (diff)
downloadMusik-c316e05a6b4eafaa5278c0e23f3b437a5511740c.tar.xz
Freuet_euch_ihr_Christen_alle neu
Diffstat (limited to 'Freuet_euch_ihr_Christen_alle')
-rw-r--r--Freuet_euch_ihr_Christen_alle/Freuet_euch_ihr_Christen_alle.ly84
-rw-r--r--Freuet_euch_ihr_Christen_alle/Makefile32
-rw-r--r--Freuet_euch_ihr_Christen_alle/artikulation.ly12
-rw-r--r--Freuet_euch_ihr_Christen_alle/stimmen.ly104
-rw-r--r--Freuet_euch_ihr_Christen_alle/texte.ly41
5 files changed, 273 insertions, 0 deletions
diff --git a/Freuet_euch_ihr_Christen_alle/Freuet_euch_ihr_Christen_alle.ly b/Freuet_euch_ihr_Christen_alle/Freuet_euch_ihr_Christen_alle.ly
new file mode 100644
index 0000000..5f19353
--- /dev/null
+++ b/Freuet_euch_ihr_Christen_alle/Freuet_euch_ihr_Christen_alle.ly
@@ -0,0 +1,84 @@
+\version "2.19.80"
+
+\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 = ""
+}
+\paper {
+ top-margin = 5
+ print-all-headers = ##t
+}
+
+\score {
+ \header {
+ title = "Freuet euch, ihr Christen alle"
+ poet = "Text: Christian Keimann 1646"
+ composer = "Musik: Andreas Hammerschmidt 1646"
+ tagline = ""
+ }
+
+ \new ChoirStaff <<
+ \set Score.skipBars = ##t
+ \new Staff <<
+ \new Voice = sopran <<
+ \global
+ \voiceOne
+ \melodieSopran
+ \artikulation
+ >>
+ \new Voice = alt <<
+ \global
+ \voiceTwo
+ \melodieAlt
+ \artikulation
+ >>
+ >>
+ \new Lyrics = textI { }
+ \new Lyrics = textIII { }
+ \new Lyrics = textIV { }
+ \new Staff <<
+ \clef "bass"
+ \new Voice = tenor <<
+ \global
+ \voiceOne
+ \melodieTenor
+ \artikulation
+ >>
+ \new Voice = bass <<
+ \global
+ \voiceTwo
+ \melodieBass
+ \artikulation
+ >>
+ >>
+
+ \context Lyrics = textI \lyricsto sopran { \textI }
+ \context Lyrics = textIII \lyricsto sopran { \textIII }
+ \context Lyrics = textIV \lyricsto sopran { \textIV }
+ >>
+ \layout {
+ indent = #0
+ \context {
+ \Staff
+ \RemoveEmptyStaves
+ \override VerticalAxisGroup #'remove-first = ##t
+ }
+ }
+ \midi {
+ \context {
+ \Score
+ tempoWholesPerMinute = #(ly:make-moment 60 4)
+ }
+ }
+}
+
diff --git a/Freuet_euch_ihr_Christen_alle/Makefile b/Freuet_euch_ihr_Christen_alle/Makefile
new file mode 100644
index 0000000..1841a08
--- /dev/null
+++ b/Freuet_euch_ihr_Christen_alle/Makefile
@@ -0,0 +1,32 @@
+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
+
+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
+
+all: $(CURDOC).pdf
+
+clean:
+ rm -f *.pre
+
+Clean: clean
+ rm -f *.pdf *.midi
+
+%.pre: %.ly
+ sed " \
+ s@%spezifisch%@$(SPEZIFISCH)@ ; \
+ $(MIDI_REGEX) \
+ " "$<" > "$@"
+
+%.pdf: %.pre *.ly
+ lilypond $<
+
diff --git a/Freuet_euch_ihr_Christen_alle/artikulation.ly b/Freuet_euch_ihr_Christen_alle/artikulation.ly
new file mode 100644
index 0000000..41c77e9
--- /dev/null
+++ b/Freuet_euch_ihr_Christen_alle/artikulation.ly
@@ -0,0 +1,12 @@
+artikulation = {
+ s1*2 \breathe |
+ s1*2 \breathe |
+ s1*2 \breathe |
+ s1*2 \breathe |
+ s1*2 \breathe |
+ s1*2 \breathe |
+ s1*2 \breathe |
+ s1*2 \breathe |
+ s1*2 \breathe |
+ s1*2 | \bar "|."
+}
diff --git a/Freuet_euch_ihr_Christen_alle/stimmen.ly b/Freuet_euch_ihr_Christen_alle/stimmen.ly
new file mode 100644
index 0000000..35d514b
--- /dev/null
+++ b/Freuet_euch_ihr_Christen_alle/stimmen.ly
@@ -0,0 +1,104 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+ \version "2.18"
+
+ global = {
+ \key g \major
+ %\override Staff.TimeSignature #'style = #'()
+ \time 4/4
+ \autoBeamOff
+ }
+
+% Die Stimmen
+
+ melodieSopran = \relative h' {
+ h4 h a g |
+ fis fis e e |
+ g a h h |
+ a a g2 |
+ fis4 g a g |
+ fis fis e2 |
+ h'4 h c c |
+ a a h h |
+ g g c c |
+ h h a2 |
+ fis4 g a g |
+ fis fis e2 |
+ e'4 e d d |
+ cis cis h h |
+ h h c h |
+ a a g g |
+ g g c c |
+ a a d d |
+ h h e e |
+ dis dis e e | \bar "|."
+ }
+
+ melodieAlt = \relative g' {
+ g4 g fis e |
+ e dis e e |
+ e fis g g |
+ g fis g2 |
+ d4 d e8[ fis] e4 |
+ e dis e2 |
+ g4 g a4. g8 |
+ fis4 a g g |
+ e e e a |
+ a gis a2 |
+ dis,4 e fis e |
+ e dis e2 |
+ g4 g fis fis |
+ g fis8[ e] d4 d |
+ d g g g |
+ g fis g d |
+ e d e a |
+ fis e fis h |
+ g fis e a |
+ fis8[ g] a4 a gis | \bar "|."
+ }
+
+ melodieTenor = \relative e' {
+ e4 d d h |
+ c( h8) a g4 g |
+ h c d e |
+ e d h2 |
+ a4 h c h |
+ h4. a8 g2 |
+ e'4 h e e |
+ d d d d |
+ c h c e |
+ f e8[ d] c2 |
+ h4 h c h |
+ h4. 8 g2 |
+ h4 h d h |
+ h ais h fis |
+ h e e d |
+ d4. c8 h4 h |
+ c d c e |
+ d e d fis |
+ e h c c |
+ h fis' e h | \bar "|."
+ }
+
+ melodieBass = \relative e {
+ e4 g d e |
+ a, h e e |
+ e c g' e |
+ c d g,2 |
+ d'4 h a e' |
+ h h e2 |
+ e4. d8 c4 a |
+ d fis g g |
+ c, e a, c |
+ d e a,2 |
+ h4 e a, e' |
+ h h e2 |
+ e4 e h' d, |
+ e fis h, h |
+ g' e c g' |
+ d d g g |
+ c, h a a |
+ d c h h |
+ e d c a' |
+ h h, e e | \bar "|."
+ }
diff --git a/Freuet_euch_ihr_Christen_alle/texte.ly b/Freuet_euch_ihr_Christen_alle/texte.ly
new file mode 100644
index 0000000..4ce0142
--- /dev/null
+++ b/Freuet_euch_ihr_Christen_alle/texte.ly
@@ -0,0 +1,41 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+ textI = \lyricmode {
+ \set stanza = "1."
+ Freu -- et euch, ihr Chris -- ten al -- le,
+ freu -- e sich, wer im -- mer kann;
+ Gott hat viel an uns ge -- tan.
+ Freu -- et euch mit gro -- ßem Schal -- le,
+ dass er uns so hoch ge -- acht',
+ sich mit uns be -- freundt ge -- macht.
+ \set stanza = "1.-4."
+ Freu -- de, Freu -- de ü -- ber Freu -- de:
+ Chris -- tus weh -- ret al -- lem Lei -- de.
+ Won -- ne, Won -- ne ü -- ber Won -- ne:
+ Chris -- tus ist die Gna -- den -- son -- ne.
+ }
+
+ textIII = \lyricmode {
+ \set stanza = "3."
+ Je -- su, wie soll ich dir dan -- ken?
+ Ich be -- ken -- ne, dass von dir
+ mei -- ne Se -- lig -- keit her -- rühr,
+ so lass mich von dir nicht wan -- ken.
+ Nimm mich dir zu Ei -- gen hin,
+ so emp -- fin -- det Herz und Sinn
+ }
+
+ textIV = \lyricmode {
+ \set stanza = "4."
+ Je -- su, nimm dich dei -- ner Glie -- der
+ fer -- ner noch in Gna -- den an;
+ schen -- ke, was man bit -- ten kann,
+ und er -- quick uns al -- le wie -- der;
+ gib der gan -- zen Chris -- ten -- schar
+ Frie -- den und ein se -- ligs Jahr.
+ }
+