diff options
author | Erich Eckner <git@eckner.net> | 2018-09-16 14:56:21 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-09-16 14:56:21 +0200 |
commit | 16baa67427eb54a5ff108a9b36b2733c153f1db3 (patch) | |
tree | a79c49bef8a52a44197200f913bd57eab7fd7b58 /Mein_Jesus_ich_lieb_dich | |
parent | c5456e752803e3c0ec4dc34e659a3707af4da5be (diff) | |
download | Musik-16baa67427eb54a5ff108a9b36b2733c153f1db3.tar.xz |
Mein_Jesus_ich_lieb_dich begonnen
Diffstat (limited to 'Mein_Jesus_ich_lieb_dich')
-rw-r--r-- | Mein_Jesus_ich_lieb_dich/Makefile | 23 | ||||
-rw-r--r-- | Mein_Jesus_ich_lieb_dich/Mein_Jesus_ich_lieb_dich.ly | 48 | ||||
-rw-r--r-- | Mein_Jesus_ich_lieb_dich/stimmen.ly | 74 | ||||
-rw-r--r-- | Mein_Jesus_ich_lieb_dich/texte.ly | 21 |
4 files changed, 166 insertions, 0 deletions
diff --git a/Mein_Jesus_ich_lieb_dich/Makefile b/Mein_Jesus_ich_lieb_dich/Makefile new file mode 100644 index 0000000..ef6dedf --- /dev/null +++ b/Mein_Jesus_ich_lieb_dich/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/Mein_Jesus_ich_lieb_dich/Mein_Jesus_ich_lieb_dich.ly b/Mein_Jesus_ich_lieb_dich/Mein_Jesus_ich_lieb_dich.ly new file mode 100644 index 0000000..0b74195 --- /dev/null +++ b/Mein_Jesus_ich_lieb_dich/Mein_Jesus_ich_lieb_dich.ly @@ -0,0 +1,48 @@ +\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 = "Mein Jesus, ich lieb dich" + poet = "Text: W. R. Featherston" + meter = "Deutsch: Ulrich Betz" + composer = "Melodie: A. J. Gordon (1836-1895)" + } + \new ChoirStaff << + \set Score.skipBars = ##t + \new ChordNames \akkorde + \new Staff << + \new Voice = "sopran" { \global \voiceOne \sopranMelodie } + \new Voice = "alt" { \global \voiceTwo \altMelodie } + >> + \new Lyrics = "textEins" {} + \new Lyrics = "textZwei" {} + \new Lyrics = "textDrei" {} + \new Lyrics = "textVier" {} + \new Staff = "maenner" << + \new Voice = "tenor" { \global \clef "bass" \voiceOne \tenorMelodie } + \new Voice = "bass" { \global \clef "bass" \voiceTwo \bassMelodie } + >> + \context Lyrics = "textEins" \lyricsto "bass" \textI + \context Lyrics = "textZwei" \lyricsto "bass" \textII + \context Lyrics = "textDrei" \lyricsto "bass" \textIII + \context Lyrics = "textVier" \lyricsto "bass" \textIV + >> + \layout { + indent = #0 + } +} diff --git a/Mein_Jesus_ich_lieb_dich/stimmen.ly b/Mein_Jesus_ich_lieb_dich/stimmen.ly new file mode 100644 index 0000000..b13e64a --- /dev/null +++ b/Mein_Jesus_ich_lieb_dich/stimmen.ly @@ -0,0 +1,74 @@ +%some settings% vim: ai sw=2 lbr nu et + +\version "2.12" + +global = { + \key f \major + %\override Staff.TimeSignature #'style = #'() + \time 4/4 + \autoBeamOff + \partial 4 +} + +punktBoegen = { + \set melismaBusyProperties = #'() + \slurDashed + \tieDashed +} + +strichBoegen = { + \set melismaBusyProperties = #'(melismaBusy slurMelismaBusy tieMelismaBusy beamMelismaBusy) + \slurSolid + \tieSolid +} + +% Die Stimmen + +akkorde = \chordmode { + f4 | + s2 b | + f1 | + c:7 | + f | + s2 b | + f1 | + c:7 | + f | + s2 b4 f | + c1 | + f2 b | + f c4 f | + s2 b | + f1 | + s2 c:7 | + f2. \bar "|." +} + +sopranMelodie = \relative f' { + f4 | + a2 b4 b | + a4.( g8) f4 a | + g2 e4 e | + f2.\breathe f4 | + a2 b4 b | + a4.( g8) f4 a | + g2 e4 e | + f2.\breathe a4 | + c2 d4 c | + \punktBoegen b4( a) g c, | + a( c) b( g) \strichBoegen | + f2( e4)\breathe f | + a2 b4 b | + a4.( g8) f4 a | + c( b) a g | + f2. \bar "|." +} + +altMelodie = \relative c' { +} + +tenorMelodie = \relative a { +} + +bassMelodie = \relative f { +} diff --git a/Mein_Jesus_ich_lieb_dich/texte.ly b/Mein_Jesus_ich_lieb_dich/texte.ly new file mode 100644 index 0000000..6c8e3fb --- /dev/null +++ b/Mein_Jesus_ich_lieb_dich/texte.ly @@ -0,0 +1,21 @@ +%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+textI = \lyricmode {
+ \set stanza = "1."
+}
+
+textII = \lyricmode {
+ \set stanza = "2."
+}
+
+textIII = \lyricmode {
+ \set stanza = "3."
+}
+
+textIV = \lyricmode {
+ \set stanza = "4."
+}
|