summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-08-16 21:09:09 +0200
committerErich Eckner <git@eckner.net>2017-08-16 21:09:09 +0200
commit902269dc3daa7f8931a8cd605dd7f3f78403adb8 (patch)
treec52a0e1e2792a6fe4968eb989795be68c29d1120
parentedea34b3bb877b25d90808b32523c2852f282b4b (diff)
downloadMusik-902269dc3daa7f8931a8cd605dd7f3f78403adb8.tar.xz
Die_Himmel_erzaehlen neu
-rwxr-xr-xDie_Himmel_erzaehlen/Die_Himmel_erzaehlen.ly46
-rw-r--r--Die_Himmel_erzaehlen/Makefile23
-rwxr-xr-xDie_Himmel_erzaehlen/stimmen.ly109
-rwxr-xr-xDie_Himmel_erzaehlen/texte.ly32
4 files changed, 210 insertions, 0 deletions
diff --git a/Die_Himmel_erzaehlen/Die_Himmel_erzaehlen.ly b/Die_Himmel_erzaehlen/Die_Himmel_erzaehlen.ly
new file mode 100755
index 0000000..5916428
--- /dev/null
+++ b/Die_Himmel_erzaehlen/Die_Himmel_erzaehlen.ly
@@ -0,0 +1,46 @@
+\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 = "Die Himmel erzählen"
+ poet = "Text: Jan Janessen (zu Psalm 19)"
+ composer = "Melodie: Fritz Baltruweit (*1955)"
+ }
+ \new ChoirStaff <<
+ \new ChordNames {
+ \global \germanChords \akkorde
+ }
+ \new Staff <<
+ \new Voice = "Sopran" { \voiceOne \global \sopranMelodie }
+ \new Voice = "Alt" { \voiceTwo \global \altMelodie }
+ \new Lyrics \lyricsto "Sopran" { \textI }
+ \new Lyrics \lyricsto "Sopran" { \textII }
+ \new Lyrics \lyricsto "Sopran" { \textIII }
+ >>
+ \new Staff <<
+ \clef "bass"
+ \new Voice = "Maenner" { \oneVoice \global \pausenMaenner }
+ \new Voice = "Tenor" { \voiceOne \global \tenorMelodie }
+ \new Voice = "Bass" { \voiceTwo \global \bassMelodie }
+ >>
+ >>
+ \layout {
+ indent = #0
+ }
+}
diff --git a/Die_Himmel_erzaehlen/Makefile b/Die_Himmel_erzaehlen/Makefile
new file mode 100644
index 0000000..ef6dedf
--- /dev/null
+++ b/Die_Himmel_erzaehlen/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/Die_Himmel_erzaehlen/stimmen.ly b/Die_Himmel_erzaehlen/stimmen.ly
new file mode 100755
index 0000000..39fb43c
--- /dev/null
+++ b/Die_Himmel_erzaehlen/stimmen.ly
@@ -0,0 +1,109 @@
+
+global = {
+ \time 6/8
+ \key f \major
+ \partial 8
+ \autoBeamOff
+}
+
+punktBoegen = {
+ \set melismaBusyProperties = #'()
+ \slurDashed
+ \tieDashed
+}
+
+strichBoegen = {
+ \set melismaBusyProperties = #'(melismaBusy slurMelismaBusy tieMelismaBusy beamMelismaBusy)
+ \slurSolid
+ \tieSolid
+}
+
+pausenMaenner = {
+ s8 |
+ s2.*7 |
+ s2 s8 \bar "|." r8 |
+ R2.*7 |
+ r4. r4 \bar "||"
+}
+
+sopranMelodie = \relative c' {
+ c8 |
+ a' a a g g g |
+ b4 c8 a f g16 a |
+ b8 b a g g f |
+ f e f g4 c,8 |
+ a' a a g g g |
+ b4 c8 a f g16 a |
+ b8 b a g f e |
+ f4.~ f4 \bar "|." \oneVoice c'8 |
+ c4.~ c4 c8 |
+ b4 b8 a f c' |
+ c4. c8 b a |
+ g4.~ g4 \voiceOne c,8 |
+ a' a a g g g |
+ \punktBoegen b~ b \strichBoegen c a f g16 a |
+ b8 b a g f a |
+ g4.~ g4 \bar "||"
+}
+
+altMelodie = \relative c' {
+ c8 |
+ f f f e e e |
+ f4 f8 f f e16 f |
+ g8 g f d d d |
+ d c d e4 c8 |
+ f f f e e e |
+ f4 f8 f f e16 f |
+ g8 g f e d c |
+ c4.~ c4 \bar "|." s8 |
+ s2.*3 |
+ s4. s4 c8 |
+ f f f e e e |
+ \punktBoegen d~ d \strichBoegen d f f f16 f |
+ d8 d d d d d |
+ e4.~ e4 \bar "||"
+}
+
+tenorMelodie = \relative c' {
+ c8 |
+ c c c c c c |
+ d4 d8 c c c16 c |
+ d8 d d b b b |
+ g g g g4 c8 |
+ c c c c c c |
+ d4 d8 c c c16 c |
+ d8 d d c c b |
+ a4.~ a4 \bar "|." s8 |
+ s2.*7 |
+ s2 s8 \bar "||"
+}
+
+bassMelodie = \relative c {
+ c8 |
+ f f f c c c |
+ b4 b8 f' f f16 f |
+ g8 g g g g g |
+ c, c c c4 c8 |
+ f f f c c c |
+ b4 b8 f f f16 f |
+ g8 g g c, c c |
+ f4.~ f4 \bar "|." s8 |
+ s2.*7 |
+ s2 s8 \bar "||"
+}
+
+akkorde = {
+ s8 |
+ s2.*7 |
+ s2 s8 \bar "|." s |
+ \chordmode {
+ f4. c |
+ b f |
+ f g:m |
+ c2. |
+ f4. c |
+ b f |
+ g2.:m |
+ c4.~ c4
+ }
+}
diff --git a/Die_Himmel_erzaehlen/texte.ly b/Die_Himmel_erzaehlen/texte.ly
new file mode 100755
index 0000000..d699422
--- /dev/null
+++ b/Die_Himmel_erzaehlen/texte.ly
@@ -0,0 +1,32 @@
+
+textI = \lyricmode {
+ \set stanza = "Refr."
+ Die Him -- mel er -- zäh -- len die Eh -- re Got -- tes
+ und die Er -- de ver -- än -- dert ihr al -- tes Ge -- sicht.
+ Die Him -- mel er -- zäh -- len die Eh -- re Got -- tes
+ und die Er -- de lebt auf und wird Licht.
+ \set stanza = "1."
+ Ein Tag er -- zählt's dem an -- dern.
+ Selbst Nacht für Nacht wird klug.
+ Kaum hör -- bar die Stim -- me, die welt -- _ weit wan -- der.
+ A -- ber Schwei -- gen sagt oft auch ge -- nug. __
+}
+
+textII = \lyricmode {
+ \repeat unfold 43 { \skip 1 }
+ \set stanza = "2."
+ Ein Wort, von Gott ge -- ge -- ben,
+ tut Herz und See -- le gut.
+ Kaum denk -- bar die Gü -- te, von der _ wir le -- ben,
+ ge -- gen al -- le Angst macht sie uns Mut. __
+}
+
+textIII = \lyricmode {
+ \repeat unfold 43 { \skip 1 }
+ \set stanza = "3."
+ Mein Lied wird Gott ge -- fal -- len,
+ ver -- schweigt es nicht die Schuld.
+ Kaum spür -- bar, doch meint er es gut mit uns al -- len,
+ ja, er sucht uns in gro -- ßer Ge -- duld. __
+}
+