summaryrefslogtreecommitdiff
path: root/Der_Morgenstern_ist_aufgedrungen
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-12-08 17:02:22 +0100
committerErich Eckner <git@eckner.net>2017-12-08 17:02:22 +0100
commit10de7a56e3e44123b0fda290bc172e880eccad44 (patch)
treedd29c9819d1e23b26073b2406ed09b8f53ec75bc /Der_Morgenstern_ist_aufgedrungen
parent7c7cac3075ef9c96600c539882b9d73ca9674224 (diff)
downloadMusik-10de7a56e3e44123b0fda290bc172e880eccad44.tar.xz
Der_Morgenstern_ist_aufgedrungen neu
Diffstat (limited to 'Der_Morgenstern_ist_aufgedrungen')
-rw-r--r--Der_Morgenstern_ist_aufgedrungen/Der_Morgenstern_ist_aufgedrungen.ly103
-rw-r--r--Der_Morgenstern_ist_aufgedrungen/Makefile31
-rw-r--r--Der_Morgenstern_ist_aufgedrungen/stimmen.ly92
-rw-r--r--Der_Morgenstern_ist_aufgedrungen/texte.ly30
4 files changed, 256 insertions, 0 deletions
diff --git a/Der_Morgenstern_ist_aufgedrungen/Der_Morgenstern_ist_aufgedrungen.ly b/Der_Morgenstern_ist_aufgedrungen/Der_Morgenstern_ist_aufgedrungen.ly
new file mode 100644
index 0000000..bd747f6
--- /dev/null
+++ b/Der_Morgenstern_ist_aufgedrungen/Der_Morgenstern_ist_aufgedrungen.ly
@@ -0,0 +1,103 @@
+\version "2.19.80"
+
+\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 = "Der Morgenstern ist aufgedrungen"
+ tagline = ""
+ }
+
+ \new StaffGroup = choirStaff <<
+ \new Voice = sopran <<
+ \global
+ \melodieSopran
+ >>
+ \new Lyrics = textSopranI { }
+ \new Lyrics = textSopranII { }
+ \new Lyrics = textSopranIV { }
+ \new Voice = alt <<
+ \global
+ \melodieAlt
+ >>
+ \new Lyrics = textAltI { }
+ \new Lyrics = textAltII { }
+ \new Lyrics = textAltIV { }
+ \new Voice = tenor <<
+ \clef "G_8"
+ \global
+ \melodieTenor
+ >>
+ \new Lyrics = textTenorI { }
+ \new Lyrics = textTenorII { }
+ \new Lyrics = textTenorIV { }
+ \new Voice = bass <<
+ \clef "bass"
+ \global
+ \melodieBass
+ >>
+ \new Lyrics = textBassI { }
+ \new Lyrics = textBassII { }
+ \new Lyrics = textBassIV { }
+
+ %SOPRAN% \context Lyrics = textSopranI \lyricsto sopran { \textI }
+ %SOPRAN% \context Lyrics = textSopranII \lyricsto sopran { \textII }
+ %SOPRAN% \context Lyrics = textSopranIV \lyricsto sopran { \textIV }
+ %ALT% \context Lyrics = textAltI \lyricsto alt { \textI }
+ %ALT% \context Lyrics = textAltII \lyricsto alt { \textII }
+ %ALT% \context Lyrics = textAltIV \lyricsto alt { \textIV }
+ %TENOR% \context Lyrics = textTenorI \lyricsto tenor { \textI }
+ %TENOR% \context Lyrics = textTenorII \lyricsto tenor { \textII }
+ %TENOR% \context Lyrics = textTenorIV \lyricsto tenor { \textIV }
+ %BASS% \context Lyrics = textBassI \lyricsto bass { \textI }
+ %BASS% \context Lyrics = textBassII \lyricsto bass { \textII }
+ %BASS% \context Lyrics = textBassIV \lyricsto bass { \textIV }
+ >>
+ \layout {
+ indent = #0
+ \context {
+ \Score
+ %% no bar lines in staves or lyrics
+ \hide BarLine
+ }
+ %% the next two instructions keep the lyrics between the bar lines
+ \context {
+ \Lyrics
+ \consists "Bar_engraver"
+ \consists "Separating_line_group_engraver"
+ }
+ \context {
+ \Voice
+ %% Comment in the below "\remove" command to allow line
+ %% breaking also at those bar lines where a note overlaps
+ %% into the next measure. The command is commented out in this
+ %% short example score, but especially for large scores, you
+ %% will typically yield better line breaking and thus improve
+ %% overall spacing if you comment in the following command.
+ \remove "Forbid_line_break_engraver"
+ }
+ }
+ \midi {
+ \context {
+ \Score
+ tempoWholesPerMinute = #(ly:make-moment 60 4)
+ }
+ }
+}
+
diff --git a/Der_Morgenstern_ist_aufgedrungen/Makefile b/Der_Morgenstern_ist_aufgedrungen/Makefile
new file mode 100644
index 0000000..6ce2ede
--- /dev/null
+++ b/Der_Morgenstern_ist_aufgedrungen/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
+
+all: $(CURDOC).pdf $(CURDOC).midi
+
+clean:
+ rm -f *.pre
+
+Clean: clean
+ rm -f *.pdf *.midi
+
+%.pre: %.ly
+ sed " \
+ s@%spezifisch%@$(SPEZIFISCH)@; \
+ /%$(STIMME)%/{ \
+ s/%[A-Z]\+%//; \
+ p; \
+ d; \
+ }; \
+ /%[A-Z]\+%/d \
+ " "$<" > "$@"
+
+%.pdf %.midi: %.pre *.ly
+ lilypond $<
+
diff --git a/Der_Morgenstern_ist_aufgedrungen/stimmen.ly b/Der_Morgenstern_ist_aufgedrungen/stimmen.ly
new file mode 100644
index 0000000..8ad88f4
--- /dev/null
+++ b/Der_Morgenstern_ist_aufgedrungen/stimmen.ly
@@ -0,0 +1,92 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+ \version "2.18"
+
+ global = {
+ \key f \major
+ %\override Staff.TimeSignature #'style = #'()
+ \time 2/2
+ \autoBeamOff
+ \partial 4
+ \skip 4
+ \skip 1*15
+ \set Score.skipBars = ##t
+ \override Staff.BarLine.transparent = ##f
+ }
+
+% Die Stimmen
+
+ melodieSopran = \relative c'' {
+ c4 |
+ c a f g |
+ a8[( b] c2) a4 |
+ b2 a |
+ r4 c c2 a4 g2 f4 |
+ b g c2 |
+ a r4 a |
+ a8 a a b c4 c |
+ c( b8[ a] g2 |
+ f4 e8[ d] c2) |
+ r4 c f f |
+ g g a8[( b] c2)
+ a4 a( g8[ f] |
+ a2) g |
+ f1 | \bar "|."
+ }
+
+ melodieAlt = \relative f' {
+ f4 |
+ g c, d e |
+ c4.( d8 e4) c |
+ g'2 f |
+ r4 f e2 |
+ f4 d2 d4 |
+ f e e2 |
+ c r4 c |
+ f8 f f f e2~ |
+ e e |
+ d( e) |
+ r4 f c d |
+ d e c8[( d] e2)
+ f( e8[ d]) |
+ e4( f) e2 |
+ c1 | \bar "|."
+ }
+
+ melodieTenor = \relative c' {
+ c4 |
+ c4. a8 a4 c |
+ a( g8[ f] g4) a |
+ d2 d |
+ r4 c g2 |
+ d'4 b2 a4 |
+ d c g2 |
+ a r4 a |
+ c8 c c d g,2~ |
+ g c |
+ a1 |
+ r4 a a2 |
+ b4 c a g2
+ d'4 d2 |
+ c1 |
+ a | \bar "|."
+ }
+
+ melodieBass = \relative f {
+ f4 |
+ e f d c |
+ f( e8[ d] c4) f |
+ g2 d |
+ r4 a4 c2 |
+ d4 g,2 d'4 |
+ b c c2 |
+ f, r4 f' |
+ f8 f f d c2~ |
+ c c |
+ d4( c8[ b] a2) |
+ r4 f' f d |
+ g c, f( e8[ d] |
+ c4 d2) b4 |
+ c2 c |
+ f,1 | \bar "|."
+ }
diff --git a/Der_Morgenstern_ist_aufgedrungen/texte.ly b/Der_Morgenstern_ist_aufgedrungen/texte.ly
new file mode 100644
index 0000000..dea6455
--- /dev/null
+++ b/Der_Morgenstern_ist_aufgedrungen/texte.ly
@@ -0,0 +1,30 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+ textI = \lyricmode {
+ \set stanza = "1."
+ Der Mor -- gen -- stern ist auf -- ge -- drun -- gen,
+ er leucht da -- her zu die -- ser Stun -- de
+ hoch ü -- ber Berg und tie -- fe Tal,
+ vor Freud singt uns der lie -- ben En -- gel Schar.
+ }
+
+ textII = \lyricmode {
+ \set stanza = "2."
+ „Wacht auf“, ruft uns der Wäch -- ter Stim -- me
+ vor Freu -- den auf der ho -- hen Zin -- ne:
+ „Wacht auf zu die -- ser Freu -- den -- zeit!
+ Der Bräut' -- gam kommt, nun ma -- chet euch be -- reit!“
+ }
+
+ textIV = \lyricmode {
+ \set stanza = "4."
+ O heil -- ger Mor -- gen -- stern, wir prei -- sen
+ dich heu -- te hoch mit fro -- hen Wei -- sen;
+ du leuch -- test vie -- len nah und fern,
+ so leucht auch uns, Herr Christ, du Mor -- gen -- stern!
+ }
+