diff options
author | Erich Eckner <git@eckner.net> | 2020-07-20 11:17:53 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2020-07-20 11:17:53 +0200 |
commit | 566871e37eb56597edbe96eff40fe388b6ca44ef (patch) | |
tree | 602805bf47c4096d606ee4928ed76600b1e54d45 /Geh_aus_in_dieser_lieben_Sommerzeit | |
parent | b51411d16b61347b36c3c00b425a45b5da549b79 (diff) | |
download | Musik-566871e37eb56597edbe96eff40fe388b6ca44ef.tar.xz |
Kombi-Version "Geh_aus_in_dieser_lieben_Sommerzeit" neu
Diffstat (limited to 'Geh_aus_in_dieser_lieben_Sommerzeit')
-rw-r--r-- | Geh_aus_in_dieser_lieben_Sommerzeit/Geh_aus_in_dieser_lieben_Sommerzeit.ly | 84 | ||||
-rw-r--r-- | Geh_aus_in_dieser_lieben_Sommerzeit/Makefile | 33 |
2 files changed, 117 insertions, 0 deletions
diff --git a/Geh_aus_in_dieser_lieben_Sommerzeit/Geh_aus_in_dieser_lieben_Sommerzeit.ly b/Geh_aus_in_dieser_lieben_Sommerzeit/Geh_aus_in_dieser_lieben_Sommerzeit.ly new file mode 100644 index 0000000..f0c2fc7 --- /dev/null +++ b/Geh_aus_in_dieser_lieben_Sommerzeit/Geh_aus_in_dieser_lieben_Sommerzeit.ly @@ -0,0 +1,84 @@ +\include "deutsch.ly" + +\pointAndClickOff + +\header { + tagline = "" +} +\paper { + top-margin = 5 + print-all-headers = ##t +} + +define(`STR_2',`(3) 2') +define(`STR_9',`(5) 9') + +include(Geh_aus_mein_Herz_stimmen.pre) +include(Geh_aus_mein_Herz_texte.pre) + +\bookpart { + \score { + \header { + title = "Geh aus, mein Herz, und suche Freud" + poet = "Text: Paul Gerhardt (1607-1676)" + composer = "Weise: Augustin Harder (1775-1813)" + } + \new ChoirStaff << + \new Staff + << + \set Score.skipBars = ##t + \new Voice = sopran { \global \voiceOne \sopranMelodie } + \new Voice = alt { \global \voiceTwo \altMelodie } + >> + \new Lyrics \lyricsto sopran { \textII } + \new Lyrics \lyricsto sopran { \textIX } + \new Staff << + \new Voice = tenor { \global \clef "bass" \voiceOne \tenorMelodie } + \new Voice = bass { \global \clef "bass" \voiceTwo \bassMelodie } + >> + >> + \layout { + indent = #0 + } + } +} + +define(`STR_1S',`(1) 1') +define(`STR_1',`(2) 1') +define(`STR_2',`(4) 2') +define(`STR_3',`(6) 3') + +include(In_dieser_lieben_Sommerzeit_artikulation.pre) +include(In_dieser_lieben_Sommerzeit_stimmen.pre) +include(In_dieser_lieben_Sommerzeit_texte.pre) + +\bookpart{ + \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 \voiceOne \melodieSopran } + \new Voice = alt { \global \voiceTwo \melodieAlt } + \new Voice = fArtik { \global \voiceOne \artikulation } + >> + \new Lyrics \lyricsto sopran { \textSI } + \new Lyrics \lyricsto sopran { \textDI } + \new Lyrics \lyricsto sopran { \textDII } + \new Lyrics \lyricsto sopran { \textDIII } + \new Staff << + \new Voice = tenor { \clef "bass" \global \voiceOne \melodieTenor } + \new Voice = bass { \clef "bass" \global \voiceTwo \melodieBass } + \new Voice = mArtik { \clef "bass" \global \voiceOne \artikulation } + >> + >> + \layout { + indent = #0 + } + } +} diff --git a/Geh_aus_in_dieser_lieben_Sommerzeit/Makefile b/Geh_aus_in_dieser_lieben_Sommerzeit/Makefile new file mode 100644 index 0000000..89c6ac1 --- /dev/null +++ b/Geh_aus_in_dieser_lieben_Sommerzeit/Makefile @@ -0,0 +1,33 @@ +CURDOC=$(shell basename "$(CURDIR)") + +DIRS=../Geh_aus_mein_Herz ../In_dieser_lieben_Sommerzeit + +EXTRAS=-mit-Texthinweisen + +all: $(CURDOC)$(EXTRAS).pdf + +clean: + rm -f *.pre *.post + +Clean: clean + rm -f *.pdf *.midi + +include ../.meta/*.mk + +%.pre: %.ly + cat "$<" > "$@" + +Geh_aus_mein_Herz_%.pre: ../Geh_aus_mein_Herz/%.ly + cat "$<" > "$@" + +In_dieser_lieben_Sommerzeit_%.pre: ../In_dieser_lieben_Sommerzeit/%.ly + cat "$<" > "$@" + +%.post: %.pre $(patsubst %.ly,%.pre,$(shell find $(DIRS) -name '*.ly' | cut -d/ -f2,3 | tr '/' '_')) ../.meta/header.ly + cat ../.meta/header.ly "$<" \ + |m4 \ + >"$@" + +%.pdf: %.post + lilypond $< + pkill -SIGHUP -xf "mupdf(-x11)? $@" || true |