diff options
author | Erich Eckner <git@eckner.net> | 2018-09-09 20:33:20 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-09-09 20:33:20 +0200 |
commit | 36046530c0bb1d46a66b3fc0c4690e0340c9209c (patch) | |
tree | ec84e5239f9d6f694d52f2983ba6ca3cb545d791 /Vinum_schenk_ein | |
parent | f08c2585500a175043a8a5715e9ab8cae7aa9b45 (diff) | |
download | Musik-36046530c0bb1d46a66b3fc0c4690e0340c9209c.tar.xz |
Vinum_schenk_ein neu
Diffstat (limited to 'Vinum_schenk_ein')
-rw-r--r-- | Vinum_schenk_ein/Makefile | 23 | ||||
-rw-r--r-- | Vinum_schenk_ein/Vinum_schenk_ein.ly | 50 | ||||
-rw-r--r-- | Vinum_schenk_ein/stimmen.ly | 166 | ||||
-rw-r--r-- | Vinum_schenk_ein/texte.ly | 143 |
4 files changed, 382 insertions, 0 deletions
diff --git a/Vinum_schenk_ein/Makefile b/Vinum_schenk_ein/Makefile new file mode 100644 index 0000000..ef6dedf --- /dev/null +++ b/Vinum_schenk_ein/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/Vinum_schenk_ein/Vinum_schenk_ein.ly b/Vinum_schenk_ein/Vinum_schenk_ein.ly new file mode 100644 index 0000000..a543a39 --- /dev/null +++ b/Vinum_schenk_ein/Vinum_schenk_ein.ly @@ -0,0 +1,50 @@ +\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 = "Vinum schenk ein" + poet = "Johann Wolfgang von Goethe (1749-1832)" + composer = "Erasmus Widmann (1618)" + } + \new ChoirStaff << + \set Score.skipBars = ##t + \new Staff << + \new Voice = frauen { \global \oneVoice \pausenFrauen } + \new Voice = sopran { \global \voiceOne \melodieSopran } + \new Voice = alt { \global \voiceTwo \melodieAlt } + >> + \new Lyrics \lyricsto sopran { \textFrauenI } + \new Lyrics \lyricsto sopran { \textFrauenII } + \new Lyrics \lyricsto sopran { \textFrauenIII } + \new Staff << + \new Voice = tenor { \global \clef "G_8" \melodieTenor } + >> + \new Lyrics \lyricsto tenor { \textTenorI } + \new Lyrics \lyricsto tenor { \textTenorII } + \new Lyrics \lyricsto tenor { \textTenorIII } + \new Staff << + \new Voice = bass { \global \clef "bass" \melodieBass } + >> + \new Lyrics \lyricsto bass { \textBassI } + \new Lyrics \lyricsto bass { \textBassII } + \new Lyrics \lyricsto bass { \textBassIII } + >> + \layout { + indent = #0 + } +} diff --git a/Vinum_schenk_ein/stimmen.ly b/Vinum_schenk_ein/stimmen.ly new file mode 100644 index 0000000..c0dfbd7 --- /dev/null +++ b/Vinum_schenk_ein/stimmen.ly @@ -0,0 +1,166 @@ +%some settings% vim: ai sw=2 lbr nu et + +\version "2.18" + +global = { + \key a \major + %\override Staff.TimeSignature #'style = #'() + \time 3/4 + \autoBeamOff +} + +% Die Stimmen + +pausenFrauen = { + R2. | + s2.*2 | + R2. | + s2.*6 | + R2. | + s2.*2 | + R2. | + s2.*6 | % \bar "||" + \repeat volta 2 { + s2.*10 | + } +} + +melodieSopran = \relative cis'' { + s2. | + cis4 cis cis | + cis2. | + s | + cis4 cis cis | + cis2.\breathe | + cis4 h a | + gis2. | + a4 a gis | + a2. | + s | + h4 h h | + h2. | + s | + h4 h h | + h2.\breathe | + e4 d h | + cis4. h8 a4 | + gis fis2 | + gis2. | % \bar "||" + \repeat volta 2 { + a4 a h | + cis2. | + h4 a a | + gis2.\breathe | + a4 h cis | + d2. | + h4 a h | + cis( h8[ a] gis4)\breathe | + a a gis | + a2. | + } +} + +melodieAlt = \relative a' { + s2. | + a4 a a | + a2. | + s | + a4 a a | + a2.\breathe | + a4 gis e | + e2. | + e4 fis e | + e2. | + s | + gis4 gis gis | + gis2. | + s | + gis4 gis gis | + gis2.\breathe | + h4 a gis | + fis cis4. dis8 | + e2 dis4 | + e2. | % \bar "||" + \repeat volta 2 { + e4 fis fis | + a2. | + gis4 e fis | + h,2.\breathe | + d4 fis gis | + a2. | + gis4 fis e | + a( d, e)\breathe | + e fis e | + e2. | + } +} + +melodieTenor = \relative e { + e4 e e | + e2. | + R | + e4 e e | + e2. | + R | + cis4 e cis | + h2. | + cis4 h2 | + cis2.\breathe | + e4 e e | + e2. | + R | + e4 e e | + e2. | + R | + gis4 fis e | + cis e fis | + h, h2 | + h2. | % \bar "||" + \repeat volta 2 { + cis4 cis dis | + e2. | + e4 e dis | + e2.\breathe | + fis4 d e | + fis2. | + e4 cis h | + e( h2)\breathe | + cis4 h h | + cis2. | + } +} + +melodieBass = \relative a { + R2. | + a4 a a | + a2. | + R | + a4 a a | + a2.\breathe | + fis4 gis a | + e2. | + cis4 d e | + a,2. | + R | + e'4 e e | + e2. | + R | + e4 e e | + e2.\breathe | + e4 fis gis | + a4. gis8 fis4 | + e h' h, | + e2. | % \bar "||" + \repeat volta 2 { + a4 fis h | + a2. | + e4 cis fis | + e2.\breathe | + d4 h e | + d2. | + e4 fis gis | + a( gis8[ fis] e4)\breathe | + cis d e | + a,2. | + } +} diff --git a/Vinum_schenk_ein/texte.ly b/Vinum_schenk_ein/texte.ly new file mode 100644 index 0000000..2c76b04 --- /dev/null +++ b/Vinum_schenk_ein/texte.ly @@ -0,0 +1,143 @@ + +%some settings% vim: ai sw=2 lbr nu et + +% Abkürzungen + +% Die Textaufteilungen + +textIa = \lyricmode { + \set stanza = "1." + Vi -- num schenk ein, + lass Was -- ser sein, +} + +textIb = \lyricmode { + Der Re -- ben Saft + gibt gu -- te Kraft, +} + +textIc = \lyricmode { + Macht Jung und Alt + fröh -- lich gar bald. + Drum's Was -- ser meid', + trink Wein zur Freud, +} + +textIIa = \lyricmode { + \set stanza = "2." + Der Wein ist gut, + macht fri -- schen Mut, +} + +textIIb = \lyricmode { + Me -- lan -- cho -- ley + ver -- treibt er frei; +} + +textIIc = \lyricmode { + Die Farb schön klar + macht lus -- tig gar, + fröh -- lich und frei, + drum bleib da -- bei, + \set stanza = "1.-3." + fa -- la -- la -- la. +} + +textIIIa = \lyricmode { + \set stanza = "3." + Zur G'sund -- heit dein + halt dich zum Wein, +} + +textIIIb = \lyricmode { + Er stär -- ket dich + gar kräf -- tig -- lich, +} + +textIIIc = \lyricmode { + Herz, Sinn und Mut + er -- qui -- cken tut, + ver -- kehrt in Freud + manch Trau -- rig -- keit, +} + +textFrauenI = \lyricmode { + \textIa + \repeat unfold 8 { \skip 1 } + \textIb + \repeat unfold 9 { \skip 1 } + \textIc +} + +textTenorI = \lyricmode { + \textIa + \repeat unfold 7 { \skip 1 } + \textIb + \repeat unfold 9 { \skip 1 } + \textIc +} + +textBassI = \lyricmode { + \textIa + \repeat unfold 8 { \skip 1 } + \textIb + \repeat unfold 10 { \skip 1 } + \textIc +} + +textFrauenII = \lyricmode { + \textIIa + \set stanza = "1.-3." + fa -- la -- la -- la, + fa -- la -- la -- la. + \textIIb + \set stanza = "1.-3." + fa -- la -- la -- la -- la -- la -- la -- la -- la. + \textIIc +} + +textTenorII = \lyricmode { + \textIIa + \set stanza = "1.-3." + fa -- la -- la -- la, + fa -- la -- la. + \textIIb + \set stanza = "1.-3." + fa -- la -- la -- la -- la -- la -- la -- la -- la. + \textIIc +} + +textBassII = \lyricmode { + \textIIa + \set stanza = "1.-3." + fa -- la -- la -- la, + fa -- la -- la -- la. + \textIIb + \set stanza = "1.-3." + fa -- la -- la -- la -- la -- la -- la -- la -- la -- la. + \textIIc +} + +textFrauenIII = \lyricmode { + \textIIIa + \repeat unfold 8 { \skip 1 } + \textIIIb + \repeat unfold 9 { \skip 1 } + \textIIIc +} + +textTenorIII = \lyricmode { + \textIIIa + \repeat unfold 7 { \skip 1 } + \textIIIb + \repeat unfold 9 { \skip 1 } + \textIIIc +} + +textBassIII = \lyricmode { + \textIIIa + \repeat unfold 8 { \skip 1 } + \textIIIb + \repeat unfold 10 { \skip 1 } + \textIIIc +} |