summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Freude_grosze_Freude/Freude_grosze_Freude.ly45
-rw-r--r--Freude_grosze_Freude/Makefile23
-rw-r--r--Freude_grosze_Freude/stimmen.ly115
-rw-r--r--Freude_grosze_Freude/texte.ly38
4 files changed, 221 insertions, 0 deletions
diff --git a/Freude_grosze_Freude/Freude_grosze_Freude.ly b/Freude_grosze_Freude/Freude_grosze_Freude.ly
new file mode 100644
index 0000000..8feec6b
--- /dev/null
+++ b/Freude_grosze_Freude/Freude_grosze_Freude.ly
@@ -0,0 +1,45 @@
+\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 = "Wie soll ich dich empfangen"
+ composer = "Margret Birkenfeld"
+ }
+ \new ChoirStaff <<
+ \set Score.skipBars = ##t
+ \new ChordNames \akkorde
+ \new Staff <<
+ \new Voice = frauen { \global \oneVoice \pausen }
+ \new Voice = sopran { \global \voiceOne \melodieSopran }
+ \new Voice = alt { \global \voiceTwo \melodieAlt }
+ >>
+ \new Lyrics \lyricsto sopran { \textI }
+ \new Lyrics \lyricsto sopran { \textII }
+ \new Lyrics \lyricsto sopran { \textIII }
+ \new Lyrics \lyricsto sopran { \textIV }
+ \new Lyrics \lyricsto sopran { \textV }
+ \new Staff <<
+ \new Voice = maenner { \global \clef "bass" \oneVoice \pausen }
+ \new Voice = tenor { \global \clef "bass" \voiceOne \melodieTenor }
+ \new Voice = bass { \global \clef "bass" \voiceTwo \melodieBass }
+ >>
+ >>
+ \layout {
+ indent = #0
+ }
+}
diff --git a/Freude_grosze_Freude/Makefile b/Freude_grosze_Freude/Makefile
new file mode 100644
index 0000000..ef6dedf
--- /dev/null
+++ b/Freude_grosze_Freude/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/Freude_grosze_Freude/stimmen.ly b/Freude_grosze_Freude/stimmen.ly
new file mode 100644
index 0000000..009a5ee
--- /dev/null
+++ b/Freude_grosze_Freude/stimmen.ly
@@ -0,0 +1,115 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+\version "2.18"
+
+global = {
+ \key c \major
+ %\override Staff.TimeSignature #'style = #'()
+ \time 6/8
+ \autoBeamOff
+}
+
+% Die Stimmen
+
+pausen = {
+ s2.*3 |
+ s2 s8 r |
+ s2.*3 |
+ s2 s8 r |
+ s2.*8 | \bar "|."
+}
+
+akkorde = \chordmode {
+ c4. f |
+ c2. |
+ g |
+ c |
+ c4. f |
+ c a:m |
+ d:m g:7 |
+ c2. |
+ f
+ g4.:7 c |
+ f d:7 |
+ g g:7 |
+ c2. |
+ f4. c |
+ f4 a8:7 d4.:m |
+ g:7 c |
+}
+
+melodieSopran = \relative g' {
+ g4 e8 c'4 a8 |
+ g4. e |
+ g4 g8 d[ e] f |
+ e4.~ e4 s8 |
+ g4 e8 c'4 a8 |
+ g4. c |
+ d4 d8 g,[ a] h |
+ c4.~ c4 s8 |
+ a4 a8 f[ g] a |
+ g4 f8 e4. |
+ a4 a8 d4 c8 |
+ h4 c8 d4. |
+ g,4 g8 e'4 c8 |
+ a[ h] c g4. |
+ a4 a8 f'4 d8 |
+ g,[ a] h c4. | \bar "|."
+}
+
+melodieAlt = \relative e' {
+ e4 e8 f[ g] f |
+ e4. c |
+ d4 d8 h[ c] d |
+ c4.~ c4 s8 |
+ e4 e8 f[ g] f |
+ e4. e |
+ f4 f8 f4 f8 |
+ e4.~ e4 s8 |
+ f4 f8 c4 f8 |
+ d4 d8 c4. |
+ f4 f8 fis4 a8 |
+ g4 g8 g4. |
+ e4 e8 g4 g8 |
+ f4 f8 e4. |
+ f4 g8 a4 f8 |
+ f4 f8 e4. | \bar "|."
+}
+
+melodieTenor = \relative c' {
+ c4 g8 a[ h] c |
+ c4. g |
+ g4 g8 g4 g8 |
+ g4.~ g4 s8 |
+ c4 g8 a[ h] c |
+ c4. c |
+ a4 a8 h[ c] d |
+ c4.~ c4 s8 |
+ c4 c8 a[ c] c |
+ h4 g8 c4. |
+ c4 c8 d4 d8 |
+ d4 d8 h4. |
+ c4 c8 c4 c8 |
+ c4 c8 c4. |
+ c4 cis8 d4 a8 |
+ h[ c] d c4. | \bar "|."
+}
+
+melodieBass = \relative c {
+ c4 c8 f4 f8 |
+ c4. c |
+ h4 h8 g4 g8 |
+ c4.~ c4 s8 |
+ c4 c8 f4 f8 |
+ c4. a |
+ d4 f8 g4 g,8 |
+ c4.~ c4 s8 |
+ f4 f8 f[e] f |
+ g4 h,8 c4. |
+ f4 e8 d4 fis8 |
+ g4 a8 g4. |
+ c,4 c8 c4 e8 |
+ f[ g] a c4. |
+ f,4 e8 d4 f8 |
+ g4 g8 <g c,>4. | \bar "|."
+}
diff --git a/Freude_grosze_Freude/texte.ly b/Freude_grosze_Freude/texte.ly
new file mode 100644
index 0000000..85effa4
--- /dev/null
+++ b/Freude_grosze_Freude/texte.ly
@@ -0,0 +1,38 @@
+
+%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+textI = \lyricmode {
+ \set stanza = "1."
+ Freu -- de, gro -- ße Freu -- de leuch -- tet aus der Nacht,
+ Je -- sus hat die Freu -- de in die Welt ge -- bracht.
+ Er sah uns -- re Trau -- rig -- keit, uns -- re Sün -- de, un -- ser Leid,
+ da hat Freu -- de er ge -- bracht, Freu -- de leuch -- tet aus der Nacht.
+}
+
+textII = \lyricmode {
+ \set stanza = "2."
+ Frie -- de, tie -- fer Frie -- de leuch -- tet aus der Nacht,
+ Je -- sus hat den Frie -- den in die Welt ge -- bracht.
+ Zorn und Streit muss nicht mehr sein, Je -- sus macht uns frei und rein.
+ Er hat Frie -- den uns ge -- bracht, Frie -- de leuch -- tet aus der Nacht.
+}
+
+textIII = \lyricmode {
+ \set stanza = "3."
+ Lie -- be, wel -- che Lie -- be leuch -- tet aus der Nacht,
+ Je -- sus hat die Lie -- be in die Welt ge -- bracht.
+ Kam zu uns als klei -- nes Kind und nahm auf sich uns -- re Sünd'.
+ Er hat Lie -- be uns ge -- bracht, Lie -- be leuch -- tet aus der Nacht.
+}
+
+textIV = \lyricmode {
+ \set stanza = "4."
+ Freu -- de, Frie -- de, Lie -- be leuch -- ten aus der Nacht,
+ die uns den Sohn Got -- tes in die Welt ge -- bracht.
+ Singt mit uns ein Freu -- den -- lied, vor dem Hei -- land nie -- der -- kniet:
+ Er hat uns aus uns -- rer Nacht in sein hel -- les Licht ge -- bracht.
+}