summaryrefslogtreecommitdiff
path: root/Wenn_Mozart_nicht_gestorben_waer
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-08-25 08:53:13 +0200
committerErich Eckner <git@eckner.net>2017-08-25 08:53:13 +0200
commit829d67921099e3121b1e398a3ec421a8bb9bec71 (patch)
treed53dfa7b51b3ff6bbcb68e1542a4bf834a4464c4 /Wenn_Mozart_nicht_gestorben_waer
parenta5a7d5381995dfc5d8d8be3e0bbe0a028ecb1ad2 (diff)
downloadMusik-829d67921099e3121b1e398a3ec421a8bb9bec71.tar.xz
Wenn_Mozart_nicht_gestorben_waer neu
Diffstat (limited to 'Wenn_Mozart_nicht_gestorben_waer')
-rw-r--r--Wenn_Mozart_nicht_gestorben_waer/Makefile23
-rwxr-xr-xWenn_Mozart_nicht_gestorben_waer/Wenn_Mozart_nicht_gestorben_waer.ly45
-rwxr-xr-xWenn_Mozart_nicht_gestorben_waer/stimmen.ly55
-rwxr-xr-xWenn_Mozart_nicht_gestorben_waer/texte.ly44
4 files changed, 167 insertions, 0 deletions
diff --git a/Wenn_Mozart_nicht_gestorben_waer/Makefile b/Wenn_Mozart_nicht_gestorben_waer/Makefile
new file mode 100644
index 0000000..ef6dedf
--- /dev/null
+++ b/Wenn_Mozart_nicht_gestorben_waer/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/Wenn_Mozart_nicht_gestorben_waer/Wenn_Mozart_nicht_gestorben_waer.ly b/Wenn_Mozart_nicht_gestorben_waer/Wenn_Mozart_nicht_gestorben_waer.ly
new file mode 100755
index 0000000..d0604d2
--- /dev/null
+++ b/Wenn_Mozart_nicht_gestorben_waer/Wenn_Mozart_nicht_gestorben_waer.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 = "Wenn Mozart nicht gestorben wär"
+ poet = "Text: Heinz-E. Klockhaus"
+ composer = "Melodie: Wolfgang Amadeus Mozart"
+ arranger = "Satz: Hermann Wojciechowski"
+ }
+ \new ChoirStaff <<
+ \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 Lyrics \lyricsto "Sopran" { \textIV }
+ \new Lyrics \lyricsto "Sopran" { \textV }
+ \new Staff <<
+ \clef "bass"
+ \new Voice = "Tenor" { \voiceOne \global \tenorMelodie }
+ \new Voice = "Bass" { \voiceTwo \global \bassMelodie }
+ >>
+ >>
+ \layout {
+ indent = #0
+ }
+}
diff --git a/Wenn_Mozart_nicht_gestorben_waer/stimmen.ly b/Wenn_Mozart_nicht_gestorben_waer/stimmen.ly
new file mode 100755
index 0000000..236f9f5
--- /dev/null
+++ b/Wenn_Mozart_nicht_gestorben_waer/stimmen.ly
@@ -0,0 +1,55 @@
+
+global = {
+ \time 4/4
+ \key f \major
+ \autoBeamOff
+ \partial 4
+}
+
+sopranMelodie = \relative c' {
+ c4 |
+ f f g g |
+ a4. g8 f4 c |
+ b' b a8[ g] a[ b] |
+ g2. c,4 |
+ b' b g g |
+ c4. c8 d[ c] b[ a] |
+ g4 g e e |
+ f2. \bar "|."
+}
+
+altMelodie = \relative c' {
+ c4 |
+ c d d e |
+ f c c c |
+ d f f8[ g] f4 |
+ e( f e) c |
+ e f c c |
+ c f f f |
+ d c c c |
+ c2. \bar "|."
+}
+
+tenorMelodie = \relative c' {
+ c8[ b] |
+ a4 a g8[ a] b[ c] |
+ c4 b a f |
+ f b c c |
+ c( d c) c |
+ c b b b |
+ a c b8[ a] b[ c] |
+ b4 b b b |
+ a2. \bar "|."
+}
+
+bassMelodie = \relative c {
+ c4 |
+ f8[ e] d[ c] b4 c |
+ f e f a, |
+ b d f8[ e] f[ g] |
+ c,2. c4 |
+ c d e g |
+ f a, b8[ c] d[ f] |
+ g[ f] e[ d] c4 c8[ g'] |
+ f2. \bar "|."
+}
diff --git a/Wenn_Mozart_nicht_gestorben_waer/texte.ly b/Wenn_Mozart_nicht_gestorben_waer/texte.ly
new file mode 100755
index 0000000..8818afc
--- /dev/null
+++ b/Wenn_Mozart_nicht_gestorben_waer/texte.ly
@@ -0,0 +1,44 @@
+
+WMngw = \lyricmode {
+ Wenn Mo -- zart nicht ge -- stor -- ben wär
+}
+
+textI = \lyricmode {
+ \set stanza = "1."
+ \WMngw
+ vor lan -- ger, lan -- ger Zeit,
+ dann gäb es heu -- te viel, viel mehr,
+ was un -- ser Herz er -- freut.
+}
+
+textII = \lyricmode {
+ \set stanza = "2."
+ \WMngw
+ an je -- nem Tag in Wien,
+ er schrieb noch heut der gan -- zen Welt
+ die schöns -- ten Me -- lo -- dien.
+}
+
+textIII = \lyricmode {
+ \set stanza = "3."
+ \WMngw
+ bei sei -- nem Re -- qui -- em,
+ er säß noch heu -- te am Kla -- vier,
+ alt wie Me -- thu -- sa -- lem.
+}
+
+textIV = \lyricmode {
+ \set stanza = "4."
+ Wenn Mo -- zart nicht ge -- stor -- ben wär,
+ dann ging er zum Grand -- prix.
+ Er wär schon längst ein Mil -- lio -- när,
+ denn er ist ein Ge -- nie.
+}
+
+textV = \lyricmode {
+ \set stanza = "5."
+ Für Mo -- zart bleibt der schö -- ne Trost,
+ dass man ihn nie ver -- gisst.
+ Denn er lebt fort in der Mu -- sik,
+ weil sie un -- sterb -- lich ist.
+}