summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2024-01-18 20:04:41 +0100
committerErich Eckner <git@eckner.net>2024-01-18 20:04:41 +0100
commitdd31dcea4888a3dbe87cbf564209967a41ffb051 (patch)
tree90745d83eb087013a3123ad0824747e1c962565f
parent387cc346c1a7764e9cbe8af51d15e5060ddac030 (diff)
downloadMusik-dd31dcea4888a3dbe87cbf564209967a41ffb051.tar.xz
Muede_bin_ich_geh_zur_Ruh neu
-rw-r--r--Muede_bin_ich_geh_zur_Ruh/Makefile37
-rw-r--r--Muede_bin_ich_geh_zur_Ruh/Muede_bin_ich_geh_zur_Ruh.ly46
-rw-r--r--Muede_bin_ich_geh_zur_Ruh/stimmen.ly27
-rw-r--r--Muede_bin_ich_geh_zur_Ruh/texte.ly47
4 files changed, 157 insertions, 0 deletions
diff --git a/Muede_bin_ich_geh_zur_Ruh/Makefile b/Muede_bin_ich_geh_zur_Ruh/Makefile
new file mode 100644
index 0000000..ff3ee4e
--- /dev/null
+++ b/Muede_bin_ich_geh_zur_Ruh/Makefile
@@ -0,0 +1,37 @@
+CURDOC=$(shell basename "$(CURDIR)")
+
+EXTRAS=$(shell ../.meta/find-extras)
+
+all: $(CURDOC)$(EXTRAS).pdf $(CURDOC)$(EXTRAS)-tolino.pdf
+
+print:
+ @echo $(CURDOC)$(EXTRAS).pdf
+
+clean:
+ rm -f *.pre *.post
+
+Clean: clean
+ rm -f *.pdf *.midi
+
+include ../.meta/*.mk
+
+%.pre: %.ly
+ cat "$<" > "$@"
+
+%.post: %.pre $(patsubst %.ly,%.pre, $(shell find . -name '*.ly')) ../.meta/header.ly
+ cat ../.meta/header.ly "$<" \
+ |m4 \
+ >"$@"
+
+%.pdf: %.post
+ lilypond $<
+ pkill -SIGHUP -xf "mupdf(-x11)? $@" || true
+
+%.midi: %-midi.post
+ lilypond $<
+ for s in *-midi*.midi; do \
+ mv "$$s" "$${s%-midi*.midi}$${s##*-midi}"; \
+ done
+
+%.wav: %.midi
+ fluidsynth --audio-driver=file -o audio.file.name=$@ -i $<
diff --git a/Muede_bin_ich_geh_zur_Ruh/Muede_bin_ich_geh_zur_Ruh.ly b/Muede_bin_ich_geh_zur_Ruh/Muede_bin_ich_geh_zur_Ruh.ly
new file mode 100644
index 0000000..da8c5c1
--- /dev/null
+++ b/Muede_bin_ich_geh_zur_Ruh/Muede_bin_ich_geh_zur_Ruh.ly
@@ -0,0 +1,46 @@
+\include "deutsch.ly"
+include(stimmen.pre)
+include(texte.pre)
+
+%spezifisch%
+
+\pointAndClickOff
+
+\header {
+ title = "Müde bin ich, geh zur Ruh"
+ poet = "Text: Luise Hensel 1817"
+ arranger = "Satz: Georg L. Sothilander 2014"
+ composer = "EG 484"
+ meter = "Melodie: Kaiserswerth 1842"
+ tagline = ""
+}
+\paper {
+ top-margin = 5
+}
+
+\score {
+ \new ChoirStaff <<
+ \new Staff <<
+ \new Voice = erste { \global \melodieI }
+ >>
+ ifdef(`STR_1',`\new Lyrics \lyricsto erste { \textI }')
+ ifdef(`STR_2',`\new Lyrics \lyricsto erste { \textII }')
+ ifdef(`STR_3',`\new Lyrics \lyricsto erste { \textIII }')
+ ifdef(`STR_4',`\new Lyrics \lyricsto erste { \textIV }')
+ ifdef(`STR_5',`\new Lyrics \lyricsto erste { \textV }')
+ ifdef(`STR_6',`\new Lyrics \lyricsto erste { \textVI }')
+ \new Staff <<
+ \new Voice = zweite { \global \melodieII }
+ >>
+ ifdef(`STR_1',`\new Lyrics \lyricsto zweite { \textI }')
+ ifdef(`STR_2',`\new Lyrics \lyricsto zweite { \textII }')
+ ifdef(`STR_3',`\new Lyrics \lyricsto erste { \textIII }')
+ ifdef(`STR_4',`\new Lyrics \lyricsto erste { \textIV }')
+ ifdef(`STR_5',`\new Lyrics \lyricsto erste { \textV }')
+ ifdef(`STR_6',`\new Lyrics \lyricsto erste { \textVI }')
+ >>
+ \layout {
+ indent = #0
+ \context { \Staff \RemoveEmptyStaves }
+ }
+}
diff --git a/Muede_bin_ich_geh_zur_Ruh/stimmen.ly b/Muede_bin_ich_geh_zur_Ruh/stimmen.ly
new file mode 100644
index 0000000..a621876
--- /dev/null
+++ b/Muede_bin_ich_geh_zur_Ruh/stimmen.ly
@@ -0,0 +1,27 @@
+global = {
+ \key f \major
+ \time 4/4
+ \autoBeamOff
+}
+
+melodieI = \relative f' {
+ f4. f8 f f e f |
+ g2. r4 |
+ g4. g8 g g f g |
+ a2. r4 |
+ a4. a8 a a g f |
+ d'2. r4 |
+ c4. a8 c b d, e |
+ f1 | \bar "|."
+}
+
+melodieII = \relative f' {
+ f8 g a b b[ a] c[ h]|
+ b2. r4 |
+ g8 f e d c[ cis] d[ c] |
+ f2. r4 |
+ f e d8 c b d |
+ b2( d) |
+ d4 e fis8 g b b |
+ a1 | \bar "|."
+}
diff --git a/Muede_bin_ich_geh_zur_Ruh/texte.ly b/Muede_bin_ich_geh_zur_Ruh/texte.ly
new file mode 100644
index 0000000..221644e
--- /dev/null
+++ b/Muede_bin_ich_geh_zur_Ruh/texte.ly
@@ -0,0 +1,47 @@
+textI = \lyricmode {
+ \set stanza = "STR_1."
+ Mü -- de bin ich, geh' zur Ruh',
+ schlie -- ße bei de Äug -- lein zu;
+ Va -- ter, lass die Au -- gen dein
+ ü -- ber mei -- nem Bet -- te sein!
+}
+
+textII = \lyricmode {
+ \set stanza = "STR_2."
+ Hab' ich Un -- recht heut' de -- tan,
+ sieh es, lie -- ber Gott, nicht an!
+ Dei -- ne Gnad' und Je -- su Blut
+ macht ja al -- len Scha -- den gut.
+}
+
+textIII = \lyricmode {
+ \set stanza = "STR_3."
+ Fern von mir sei Hass und Neud,
+ in mir Lieb' und Gü -- tig -- keit.
+ Lass mich Dei -- ne Grö -- ße schaun,
+ nur auf Dich, o Gott, ver -- traun.
+}
+
+textIV = \lyricmode {
+ \set stanza = "STR_4."
+ Al -- le, die mir sind ver -- wandt,
+ Gott, lass ruhn in dei -- ner Hand!
+ Al -- le Men -- schen, groß und klein,
+ sol -- len dir be -- foh -- len sein.
+}
+
+textV = \lyricmode {
+ \set stanza = "STR_5."
+ Hilf den Ar -- men in der Not,
+ sei auch gnä -- dig uns im Tod.
+ Schenk uns Frie -- den, bann den Krieg.
+ Dir ge -- hört der letz -- te Sieg.
+}
+
+textVI = \lyricmode {
+ \set stanza = "STR_6."
+ Kran -- ken Her -- zen sen -- de Ruh',
+ nas -- se Au -- gen schlie -- ße zu;
+ lass den Mond am Him -- mel stehn
+ und die stil -- le Welt be -- stehn!
+}