summaryrefslogtreecommitdiff
path: root/In_dieser_lieben_Sommerzeit
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-01-13 15:24:14 +0100
committerErich Eckner <git@eckner.net>2017-01-13 15:24:14 +0100
commitc134b466d789f56bed22e0b5fe2618dd7cf0c706 (patch)
treee31bfbb860864f130e022d52c6ee1f5d69bddd2c /In_dieser_lieben_Sommerzeit
parentd3f66442befcf71d172cecf246d8db340d6ef9ed (diff)
downloadMusik-c134b466d789f56bed22e0b5fe2618dd7cf0c706.tar.xz
In_dieser_lieben_Sommerzeit neu
Diffstat (limited to 'In_dieser_lieben_Sommerzeit')
-rw-r--r--In_dieser_lieben_Sommerzeit/In_dieser_lieben_Sommerzeit.ly61
-rw-r--r--In_dieser_lieben_Sommerzeit/Makefile23
-rw-r--r--In_dieser_lieben_Sommerzeit/artikulation.ly13
-rw-r--r--In_dieser_lieben_Sommerzeit/stimmen.ly81
-rw-r--r--In_dieser_lieben_Sommerzeit/texte.ly41
5 files changed, 219 insertions, 0 deletions
diff --git a/In_dieser_lieben_Sommerzeit/In_dieser_lieben_Sommerzeit.ly b/In_dieser_lieben_Sommerzeit/In_dieser_lieben_Sommerzeit.ly
new file mode 100644
index 0000000..7b4ce91
--- /dev/null
+++ b/In_dieser_lieben_Sommerzeit/In_dieser_lieben_Sommerzeit.ly
@@ -0,0 +1,61 @@
+\include "deutsch.ly"
+#(ly:set-option 'relative-includes #t)
+\include "artikulation.ly"
+\include "stimmen.ly"
+\include "texte.ly"
+#(ly:set-option 'relative-includes #f)
+
+%spezifisch%
+
+\header {
+ tagline = ""
+}
+\paper {
+ top-margin = 5
+ print-all-headers = ##t
+}
+
+\pointAndClickOff
+
+\score {
+ \header {
+ title = "In dieser lieben Sommerzeit"
+ poet = "Text: Paul Gerhardt (1656), J. van Düben (1715)"
+ meter = "Schwedische Textfassung: Britt G. Hallqvist (1980)"
+ composer = "Musik: Anders Öhrwall (1932-2012)"
+ }
+ \new ChoirStaff <<
+ \set Score.skipBars = ##t
+ \new Staff <<
+ \new Voice = sopran { \global \oneVoice << \melodieSopran \artikulation >> }
+ >>
+ \new Lyrics \lyricsto sopran { \textDI }
+ \new Lyrics \lyricsto sopran { \textDII }
+ \new Lyrics \lyricsto sopran { \textDIII }
+ \new Lyrics \lyricsto sopran { \textSI }
+ \new Lyrics \lyricsto sopran { \textSII }
+ \new Lyrics \lyricsto sopran { \textSIII }
+ \new Staff <<
+ \new Voice = alt { \global \oneVoice << \melodieAlt \artikulation >> }
+ >>
+ \new Lyrics \lyricsto alt { \textDI }
+ \new Lyrics \lyricsto alt { \textDII }
+ \new Lyrics \lyricsto alt { \textDIII }
+ \new Lyrics \lyricsto alt { \textSI }
+ \new Lyrics \lyricsto alt { \textSII }
+ \new Lyrics \lyricsto alt { \textSIII }
+ \new Staff <<
+ \new Voice = tenor { \clef "bass" \global \voiceOne << \melodieTenor \artikulation >> }
+ \new Voice = bass { \clef "bass" \global \voiceTwo \melodieBass }
+ >>
+ \new Lyrics \lyricsto tenor { \textDI }
+ \new Lyrics \lyricsto tenor { \textDII }
+ \new Lyrics \lyricsto tenor { \textDIII }
+ \new Lyrics \lyricsto tenor { \textSI }
+ \new Lyrics \lyricsto tenor { \textSII }
+ \new Lyrics \lyricsto tenor { \textSIII }
+ >>
+ \layout {
+% indent = #0
+ }
+}
diff --git a/In_dieser_lieben_Sommerzeit/Makefile b/In_dieser_lieben_Sommerzeit/Makefile
new file mode 100644
index 0000000..ef6dedf
--- /dev/null
+++ b/In_dieser_lieben_Sommerzeit/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/In_dieser_lieben_Sommerzeit/artikulation.ly b/In_dieser_lieben_Sommerzeit/artikulation.ly
new file mode 100644
index 0000000..59e4a71
--- /dev/null
+++ b/In_dieser_lieben_Sommerzeit/artikulation.ly
@@ -0,0 +1,13 @@
+
+artikulation = {
+ s8^\mf |
+ s^\< s4. s8^\! s |
+ s^\> s s8^\! s4. |
+ s8^\< s4. s8^\! s |
+ s2.*2 |
+ s2 s8 s^\f |
+ s2.*4 |
+ s8^\< s2 s8^\! |
+ s^\> s2 s8^\! |
+ s2. | \bar "|."
+}
diff --git a/In_dieser_lieben_Sommerzeit/stimmen.ly b/In_dieser_lieben_Sommerzeit/stimmen.ly
new file mode 100644
index 0000000..49bfc0e
--- /dev/null
+++ b/In_dieser_lieben_Sommerzeit/stimmen.ly
@@ -0,0 +1,81 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+ \version "2.18"
+
+ global = {
+ \key f \major
+ %\override Staff.TimeSignature #'style = #'()
+ \time 6/8
+ \partial 8
+ \autoBeamOff
+ }
+
+% Die Stimmen
+
+ melodieSopran = \relative c' {
+ c8 |
+ f4 g8 a8[( b]) c |
+ b4 a8 g4 a8 |
+ f4 a8 c[( a]) c |
+ <c d>4 <b d>8 c4 f,8 |
+ b4 b8 a[( f]) g |
+ a4( h8) c4 c8 |
+ <c f>4 c8 <c d>4 <b d>8 |
+ c4 a8 f4 a8 |
+ c4 a8 f[( g]) a |
+ g4 e8 c4 c8 |
+ f4 g8 a[( b]) c |
+ a4.~( a4 g8) |
+ f2. |
+ }
+
+ melodieAlt = \relative c' {
+ c8 |
+ f4 f8 f[( g]) a |
+ f4 f8 e4 e8 |
+ f4 f8 e[( a]) f |
+ f4 e8 f4 c8 |
+ f[( e]) d c[( d]) e |
+ f[( a g]) e4 e8 |
+ f4 f8 f4 e8 |
+ e4 c8 d4 f8 |
+ e4 c8 d4 f8 |
+ c[( a]) h c4 c8 |
+ f4 g8 f4 es8 |
+ d[( e f] d4 e8) |
+ f2. |
+ }
+
+ melodieTenor = \relative c' {
+ c8 |
+ a4 b8 a4 c8 |
+ d4 c8 b4 c8 |
+ a4 a8 a4 a8 |
+ f4 g8 a4 a8 |
+ b4 g8 a4 c8 |
+ c[( a h]) g4 c8 |
+ c4 c8 b4 b8 |
+ a4 a8 a4 a8 |
+ c4 c8 a[( g]) f |
+ d4 e8 c4 c'8 |
+ c4 b8 a4 f8 |
+ f[( g a] b4 g8) |
+ a2. |
+ }
+
+ melodieBass = \relative c {
+ c8 |
+ f4 f8 d4 d8 |
+ g4 g8 c,4 c8 |
+ d4 d8 a4 a8 |
+ b4 b8 a4 a'8 |
+ g4 g8 f4 e8 |
+ d4. d4 b'8 |
+ a4 a8 b4 g8 |
+ a4 f8 d4 d8 |
+ a4 a8 d4 d8 |
+ g,4 g8 c4 c8 |
+ d4 d8 a4 a8 |
+ b4( a8 g4 c8) |
+ <f f,>2. |
+ }
diff --git a/In_dieser_lieben_Sommerzeit/texte.ly b/In_dieser_lieben_Sommerzeit/texte.ly
new file mode 100644
index 0000000..58feb80
--- /dev/null
+++ b/In_dieser_lieben_Sommerzeit/texte.ly
@@ -0,0 +1,41 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+ textDI = \lyricmode {
+ \set stanza = "1."
+ In die -- ser lie -- ben Som -- mer -- zeit, geh aus mein Herz, und su -- che Freud an dei -- nes Got -- tes Ga -- ben;
+ schau an der schö -- nen Gär -- ten Zier und sie -- he, wie sie mir und dir sich aus -- ge -- schmü -- cket ha -- ben.
+ }
+
+ textDII = \lyricmode {
+ \set stanza = "2."
+ Die Ler -- che schwingt sich in die Luft, das Täub -- lein fliegt aus sei -- ner Kluft und macht sich in die Wäl -- der;
+ die hoch -- be -- gab -- te Nach -- ti -- gall er -- götzt und füllt mit ih -- rem Schall Berg, Hü -- gel, Tal und Fel -- der.
+ }
+
+ textDIII = \lyricmode {
+ \set stanza = "3."
+ Mach in mir dei -- nem Geis -- te Raum, dass ich dir werd ein gu -- ter Baum, und lass mich Wur -- zel trei -- ben;
+ ver -- lei -- he, dass zu dei -- nem Ruhm ich dei -- nes Gar -- tens schö -- ne Blum und Pflan -- ze mö -- ge blei -- ben.
+ }
+
+ textSI = \lyricmode {
+ \set stanza = "1."
+ I den -- na lju -- va som -- mar -- tid gå ut, min själ, och gläd dig vid vår Her -- res al -- la gå -- vor.
+ Se, här -- ligt smyc -- kad jor -- den står, se hur för dig och mig hon får så un -- der -- ba -- ra hå -- vor!
+ }
+
+ textSII = \lyricmode {
+ \set stanza = "2."
+ När jag hör tras -- tens kla -- ra sång, när lär -- kan jub -- lar da -- gen lång högt o -- van fält och bac -- kar,
+ då kan jag ic -- ke ti -- ga still. Min Gud, så läng -- e jag är till för lo -- vet jag dig tac -- kar.
+ }
+
+ textSIII = \lyricmode {
+ \set stanza = "3."
+ Ack, är det re -- dan här så skönt på den -- na jord, så här -- ligt grönt, hur skall det då ej bli -- va
+ i him -- me -- len, där Gud be -- rett vad ing -- en här i värl -- den sett och ord ej kan be -- skri -- va.
+ }