summaryrefslogtreecommitdiff
path: root/Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-06-17 14:49:34 +0200
committerErich Eckner <git@eckner.net>2018-06-17 14:49:34 +0200
commitbcc5c971633abe61e305154fe643d5177d837f40 (patch)
treedd45ad67efe1521a1a91926202b8aaed0e39752e /Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann
parent6dd9035718796c0f9daec59b5fd0de56bfbe8bfa (diff)
downloadMusik-bcc5c971633abe61e305154fe643d5177d837f40.tar.xz
Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann neu
Diffstat (limited to 'Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann')
-rw-r--r--Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann/Makefile31
-rw-r--r--Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann/Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann.ly63
-rw-r--r--Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann/stimmen.ly184
-rw-r--r--Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann/texte.ly44
4 files changed, 322 insertions, 0 deletions
diff --git a/Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann/Makefile b/Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann/Makefile
new file mode 100644
index 0000000..5b3af49
--- /dev/null
+++ b/Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann/Makefile
@@ -0,0 +1,31 @@
+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/Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann/Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann.ly b/Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann/Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann.ly
new file mode 100644
index 0000000..11d3ce0
--- /dev/null
+++ b/Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann/Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann.ly
@@ -0,0 +1,63 @@
+\include "deutsch.ly"
+#(ly:set-option 'relative-includes #t)
+\include "stimmen.ly"
+\include "texte.ly"
+#(ly:set-option 'relative-includes #f)
+
+%spezifisch%
+
+\version "2.19.80"
+
+\pointAndClickOff
+
+\header {
+ tagline = ""
+}
+\paper {
+ top-margin = 5
+ print-all-headers = ##t
+}
+
+\score {
+ \header {
+ title = "Wir wünschen, dass jedes Kind auf der Welt lachen kann"
+ }
+ \new Staff <<
+ \set Score.skipBars = ##t
+ \new Staff <<
+ \new Voice = instrumentI { \global \oneVoice \melodieInstrumentI }
+ >>
+ \new Staff <<
+ \new Voice = oberstimme { \global \oneVoice \melodieOberstimme }
+ >>
+ \new Lyrics \lyricsto oberstimme { \textOberstimmeI }
+ \new Lyrics \lyricsto oberstimme { \textOberstimmeII }
+ \new Lyrics \lyricsto oberstimme { \textOberstimmeIII }
+ \new ChoirStaff <<
+ \new Staff <<
+ \new Voice = frauen { \global \oneVoice \pausen }
+ \new Voice = sopran { \global \voiceOne \melodieSopran }
+ \new Voice = alt { \global \voiceTwo \melodieAlt }
+ >>
+ \new Lyrics \lyricsto alt { \textI }
+ \new Lyrics \lyricsto alt { \textII }
+ \new Lyrics \lyricsto alt { \textIII }
+ \new Staff <<
+ \new Voice = maenner { \clef "bass" \global \oneVoice \pausen }
+ \new Voice = tenor { \clef "bass" \global \voiceOne \melodieTenor }
+ \new Voice = bass { \clef "bass" \global \voiceTwo \melodieBass }
+ >>
+ >>
+ \new Staff <<
+ \new Voice = instrumentII { \clef "bass" \global \oneVoice \melodieInstrumentII }
+ >>
+ >>
+ \layout {
+ indent = #0
+ \context {
+ \Staff
+ \RemoveEmptyStaves
+ \override VerticalAxisGroup #'remove-first = ##t
+ }
+ }
+}
diff --git a/Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann/stimmen.ly b/Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann/stimmen.ly
new file mode 100644
index 0000000..ca64d26
--- /dev/null
+++ b/Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann/stimmen.ly
@@ -0,0 +1,184 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+ global = {
+ \key f \major
+ %\override Staff.TimeSignature #'style = #'()
+ \time 4/4
+ \autoBeamOff
+ }
+
+% Die Stimmen
+
+ pausen = {
+ R1*7 |
+ \partial 2. r2. | \bar "||"
+ R1 |
+ \partial 2 r2 | \bar "|." \break
+ \partial 4 r4 |
+ R1*4 |
+ r2. s4 |
+ s2 r8 s4. |
+ s1 |
+ s2 r4 s |
+ s1 |
+ s2 r4 s |
+ s1 |
+ s2 r4 s |
+ s1*4 | \bar "||"
+ }
+
+ melodieInstrumentI = \relative a' {
+ \autoBeamOn
+ a2 g8 a g f~ |
+ f2. g8 a |
+ b4 a g8 f4. |
+ g1 |
+ c2 a8 c a f~ |
+ f2. g8 a |
+ b4 a g8 f4. |
+ \partial 2. g2 r4 | \bar "||"
+ g2 e8 d c4~ |
+ \partial 2 c4. r8 | \bar "|."
+ \partial 4 r4 |
+ R1*15 |
+ r4 c8 d e f g a16 g | \bar "||"
+ }
+
+ melodieInstrumentII = \relative f, {
+ \autoBeamOn
+ f4 r8 g a2 |
+ d2. d4 |
+ g2 r8 b-. a-. g-. |
+ c,2 b4 a |
+ a8-. b-. c4-. r8 a c4 |
+ d2 r8 d-. e-. f-. |
+ g2 r4 g, |
+ \partial 2. r c, d | \bar "||"
+ c'2 r4 c |
+ \partial 2 f,4. r8 | \bar "|."
+ \partial 4 e4 |
+ f4. g8 a2 |
+ d4 d8 c4. c4 |
+ b a8 g4. c4 |
+ f f, c' c |
+ f r e r |
+ d r d c |
+ b a8 g c4 r |
+ f,2 r4 f'8 g |
+ a4 a8 a,4 b8 c4 |
+ d e8 f4 e8 d4 |
+ g, a b h8 g |
+ c4 d8-. e4-. r4. |
+ f4 r e r |
+ d a8 d4 a8 c4 |
+ b a g h8 g |
+ c4 d e2 | \bar "||"
+ }
+
+ melodieOberstimme = \relative c' {
+ R1*7 |
+ \partial 2. r2. | \bar "||"
+ R1 |
+ \partial 2 r2 | \bar "|."
+ \partial 4 r8 c |
+ a' a2 g8 a g |
+ f2 r4 f8 f |
+ f2 g8 b4. |
+ a2 r4. c,8 |
+ a' a2 g8 a g |
+ f2 r4 f8 f |
+ f2 g8 e4. |
+ f2 r4 a |
+ c c2 a8 g |
+ f2 r4 a |
+ b2 g4 f |
+ g2 r4 c, |
+ a'2 g8 a g f~ |
+ f2. r4 |
+ f f g a |
+ g1 | \bar "||"
+ }
+
+ melodieSopran = \relative a' {
+ s1*7 |
+ \partial 2. s2. | \bar "||"
+ s1 |
+ \partial 2 s2 | \bar "|."
+ \partial 4 s4 |
+ s1*4 |
+ s2. a4 |
+ d d s8 d d d |
+ d2 c8 c4. |
+ a2 s4 c |
+ c c2 a8 c |
+ d2 s4 d |
+ d2 b4 d |
+ e2 s4 e |
+ f2 e8 e e d~ |
+ d2 f,4 f |
+ f2. f4 |
+ e1 | \bar "||"
+ }
+
+ melodieAlt = \relative a' {
+ s1*7 |
+ \partial 2. s2. | \bar "||"
+ s1 |
+ \partial 2 s2 | \bar "|."
+ \partial 4 s4 |
+ s1*4 |
+ s2. a4 |
+ f f s8 f f f |
+ f2 g8 e4. |
+ f2 s4 f |
+ e e2 e8 e |
+ f2 s4 f |
+ g2 d4 f |
+ g2 s4 c, |
+ a'2 e8 e e f~ |
+ f2 d4 d |
+ d2. h4 |
+ c1 | \bar "||"
+ }
+
+ melodieTenor = \relative a {
+ s1*7 |
+ \partial 2. s2. | \bar "||"
+ s1 |
+ \partial 2 s2 | \bar "|."
+ \partial 4 s4 |
+ s1*4 |
+ s2. a4 |
+ d d s8 f, f f |
+ b2 c8 c4. |
+ c2 s4 c |
+ c c2 c8 c |
+ a2 s4 a |
+ b2 d4 d |
+ c2 s4 c |
+ c2 cis8 cis cis a~ |
+ a2 d4 c |
+ b2. a4 |
+ g1 | \bar "||"
+ }
+
+ melodieBass = \relative a {
+ s1*7 |
+ \partial 2. s2. | \bar "||"
+ s1 |
+ \partial 2 s2 | \bar "|."
+ \partial 4 s4 |
+ s1*4 |
+ s2. a4 |
+ f f s8 f f f |
+ f2 g8 e4. |
+ f2 s4 a |
+ a a2 a8 a |
+ d,2 s4 d |
+ g2 g4 g |
+ c,2 s4 c |
+ a2 a8 a a d~ |
+ d2 a4 a |
+ b2. g4 |
+ c1 | \bar "||"
+ }
diff --git a/Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann/texte.ly b/Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann/texte.ly
new file mode 100644
index 0000000..c7beaa0
--- /dev/null
+++ b/Wir_wuenschen_dass_jedes_Kind_auf_der_Welt_lachen_kann/texte.ly
@@ -0,0 +1,44 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+ textOberstimmeI = \lyricmode {
+ \set stanza = "1."
+ Wir wün -- schen, dass je -- des Kind auf der Welt la -- chen kann.
+ Wir wün -- schen, dass je -- des Kind auf der Welt la -- chen kann.
+ \set stanza = "1.-3."
+ Wir sin -- gen die -- sen Wunsch, bis er sich er -- fült
+ für euch und auch für uns, sin -- gen die Wunsch.
+ }
+
+ textOberstimmeII = \lyricmode {
+ \set stanza = "2."
+ Wir wün -- schen, dass je -- der Mensch auf der Welt Freun -- de hat.
+ Wir wün -- schen, dass je -- der Mensch auf der Welt Freun -- de hat.
+ }
+
+ textOberstimmeIII = \lyricmode {
+ \set stanza = "3."
+ Wir wün -- schen, dass je -- des Volk auf der Welt Frie -- den hat.
+ Wir wün -- schen, dass je -- des Volk auf der Welt Frie -- den hat.
+ }
+
+ textI = \lyricmode {
+ \set stanza = "1."
+ Wir wün -- schen, dass je -- des Kind la -- chen kann.
+ \set stanza = "1.-3."
+ Wir sin -- gen die -- sen Wunsch, bis er sich er -- füllt
+ für euch und auch für uns sin -- gen die -- sen Wunsch.
+ }
+
+ textII = \lyricmode {
+ \set stanza = "2."
+ Wir wün -- schen, dass je -- der Mensch la -- chen kann.
+ }
+
+ textIII = \lyricmode {
+ \set stanza = "3."
+ Wir wün -- schen, dass je -- des Volk Frie -- den hat.
+ }