summaryrefslogtreecommitdiff
path: root/Ich_sing_dir_mein_Lied
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-02-13 08:41:20 +0100
committerErich Eckner <git@eckner.net>2018-02-13 08:41:20 +0100
commit5e79f199f65dfd4e7dd8e582d80f65ff3957882f (patch)
treecb3ef98a8c6f5106abf7f0ea64758c5796f36b39 /Ich_sing_dir_mein_Lied
parent74f984106d459d81ec9894176a83b3926e96d711 (diff)
downloadMusik-5e79f199f65dfd4e7dd8e582d80f65ff3957882f.tar.xz
Ich_sing_dir_mein_Lied neu
Diffstat (limited to 'Ich_sing_dir_mein_Lied')
-rw-r--r--Ich_sing_dir_mein_Lied/Ich_sing_dir_mein_Lied.ly61
-rw-r--r--Ich_sing_dir_mein_Lied/Makefile31
-rw-r--r--Ich_sing_dir_mein_Lied/stimmen.ly96
-rw-r--r--Ich_sing_dir_mein_Lied/texte.ly53
4 files changed, 241 insertions, 0 deletions
diff --git a/Ich_sing_dir_mein_Lied/Ich_sing_dir_mein_Lied.ly b/Ich_sing_dir_mein_Lied/Ich_sing_dir_mein_Lied.ly
new file mode 100644
index 0000000..4c1bdf4
--- /dev/null
+++ b/Ich_sing_dir_mein_Lied/Ich_sing_dir_mein_Lied.ly
@@ -0,0 +1,61 @@
+\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
+}
+
+\book {
+ \score {
+ \header {
+ title = "Ich sing dir mein Lied"
+ composer = "Melodie: aus Brasilien"
+ arranger = "Satz: Helmut Brand 1998"
+ tagline = ""
+ }
+
+ \new Staff <<
+ \set Score.skipBars = ##t
+ \new ChoirStaff <<
+ \new Staff <<
+ \new Voice = sopran { \global \voiceOne \melodieSopran }
+ \new Voice = alt { \global \voiceTwo \melodieAlt }
+ >>
+ \new Lyrics = textI { }
+ \new Lyrics = textII { }
+ \new Lyrics = textIII { }
+ \new Lyrics = textIV { }
+ \new Lyrics = textV { }
+ \new Staff <<
+ \clef "bass"
+ \new Voice = tenor { \global \voiceOne \melodieTenor }
+ \new Voice = bass { \global \voiceTwo \melodieBass }
+ >>
+ >>
+ \context Lyrics = textI \lyricsto tenor { \textI }
+ \context Lyrics = textII \lyricsto tenor { \textII }
+ \context Lyrics = textIII \lyricsto tenor { \textIII }
+ \context Lyrics = textIV \lyricsto tenor { \textIV }
+ \context Lyrics = textV \lyricsto tenor { \textV }
+ >>
+ \layout {
+ indent = #0
+ \context {
+ \Staff
+ \RemoveEmptyStaves
+ \override VerticalAxisGroup #'remove-first = ##t
+ }
+ }
+ }
+}
diff --git a/Ich_sing_dir_mein_Lied/Makefile b/Ich_sing_dir_mein_Lied/Makefile
new file mode 100644
index 0000000..5b3af49
--- /dev/null
+++ b/Ich_sing_dir_mein_Lied/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/Ich_sing_dir_mein_Lied/stimmen.ly b/Ich_sing_dir_mein_Lied/stimmen.ly
new file mode 100644
index 0000000..7a6f273
--- /dev/null
+++ b/Ich_sing_dir_mein_Lied/stimmen.ly
@@ -0,0 +1,96 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+ \version "2.18"
+
+ global = {
+ \key e \minor
+ %\override Staff.TimeSignature #'style = #'()
+ \time 3/4
+ \autoBeamOff
+ \partial 4
+ \set melismaBusyProperties = #'()
+ \slurDashed
+ \tieDashed
+ }
+
+% Die Stimmen
+
+ melodieSopran = \relative h' {
+ h4 |
+ h g e |
+ h2 h'4 |
+ h a g |
+ h a a |
+ a fis dis |
+ h~ h a' |
+ a h c |
+ c h h |
+ h g e |
+ h h h' |
+ h c d |
+ d c c |
+ c h a |
+ g g g |
+ fis e dis |
+ e2 \bar "|."
+ }
+
+ melodieAlt = \relative h {
+ h4 |
+ h d c |
+ h2 e4 |
+ e e e |
+ e e c |
+ h h h |
+ h~ h fis' |
+ fis fis fis |
+ e e h |
+ h d c |
+ h h e |
+ e e e |
+ e e e |
+ dis e e |
+ e e e |
+ c h h |
+ h2 \bar "|."
+ }
+
+ melodieTenor = \relative g {
+ g4 |
+ g g g |
+ g2 g4 |
+ g a h |
+ g fis e |
+ dis dis fis |
+ fis( a) c |
+ c h a |
+ g g g |
+ g g g |
+ g g gis |
+ gis a h |
+ c c h |
+ a h c |
+ h c h |
+ a g fis |
+ g2 \bar "|."
+ }
+
+ melodieBass = \relative e {
+ e4 |
+ e e e |
+ e2 e4 |
+ d4 d d |
+ c c a |
+ h h h |
+ dis~ dis dis |
+ dis dis dis |
+ e e e |
+ e e e |
+ e e e |
+ e fis gis |
+ a a g |
+ fis g a |
+ h g e |
+ h h h |
+ e2 \bar "|."
+ }
diff --git a/Ich_sing_dir_mein_Lied/texte.ly b/Ich_sing_dir_mein_Lied/texte.ly
new file mode 100644
index 0000000..8d1f27a
--- /dev/null
+++ b/Ich_sing_dir_mein_Lied/texte.ly
@@ -0,0 +1,53 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+ textAnfang = \lyricmode {
+ Ich sing dir mein Lied in ihm klingt mein Le -- ben.
+ }
+
+ textEnde = \lyricmode {
+ des Le -- bens. Dir sing ich mein Lied.
+ }
+
+ textI = \lyricmode {
+ \set stanza = "1."
+ \textAnfang
+ Die Tö -- ne, den Klang _ hast du mir ge -- ge -- ben
+ von Wach -- sen und Wer -- den, von Him -- mel und Er -- de,
+ du Quel -- le \textEnde
+ }
+
+ textII = \lyricmode {
+ \set stanza = "2."
+ \textAnfang
+ Den Rhyth -- mus, den Schwung _ hast du mir ge -- ge -- ben
+ von dei -- ner Ge -- schich -- te, in die du uns mit -- nimmst,
+ du Hü -- ter \textEnde
+ }
+
+ textIII = \lyricmode {
+ \set stanza = "3."
+ \textAnfang
+ Die Ton -- art, den Takt _ hast du mir ge -- ge -- ben
+ von Nä -- he, die heil -- macht, wir kön -- nen dich fin -- den,
+ du Wun -- der \textEnde
+ }
+
+ textIV = \lyricmode {
+ \set stanza = "4."
+ \textAnfang
+ Die Hö -- hen und Tie -- fen hast du mir ge -- ge -- ben.
+ Du hältst uns zu -- sam -- men trotz Streit und Ver -- let -- zung,
+ du Freun -- din \textEnde
+ }
+
+ textV = \lyricmode {
+ \set stanza = "5."
+ \textAnfang
+ Die Tö -- ne, den Klang _ hast du mir ge -- ge -- ben
+ von Zei -- chen der Hoff -- nung auf stei -- ni -- gen We -- gen,
+ du Zu -- kunft \textEnde
+ }