From c17324f1b4f92c9bc497c8f67a713765b6b4b606 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Fri, 11 Dec 2015 09:56:51 +0100 Subject: Die_Botschaft neu --- Die_Botschaft/Die_Botschaft.ly | 47 ++++++++++++ Die_Botschaft/stimmen.ly | 170 +++++++++++++++++++++++++++++++++++++++++ Die_Botschaft/texte.ly | 26 +++++++ 3 files changed, 243 insertions(+) create mode 100644 Die_Botschaft/Die_Botschaft.ly create mode 100644 Die_Botschaft/stimmen.ly create mode 100644 Die_Botschaft/texte.ly (limited to 'Die_Botschaft') diff --git a/Die_Botschaft/Die_Botschaft.ly b/Die_Botschaft/Die_Botschaft.ly new file mode 100644 index 0000000..a0bd61d --- /dev/null +++ b/Die_Botschaft/Die_Botschaft.ly @@ -0,0 +1,47 @@ +\include "deutsch.ly" +\include "stimmen.ly" +\include "texte.ly" + +#(set! paper-alist (cons '("kindle" . (cons (* 210 mm) (* 130 mm))) paper-alist)) +#(set-default-paper-size "kindle") + +\pointAndClickOff + +\header { + title = "Die Botschaft" + poet = "deutscher Fassung: Ludwig Schuster" + composer = "Satz: Friedrich Zipp" + tagline = "" +} +\paper { + top-margin = 5 +} + +\score { + \new ChoirStaff << + \set Score.skipBars = ##t + \new Staff << + \new Voice = frauen { \global \oneVoice \pausen } + \new Voice = sopran { \global \voiceOne \melodieSopran } + \new Voice = alt { \global \voiceTwo \melodieAlt } + >> + \new Lyrics \lyricsto sopran { \textI } + \new Lyrics \lyricsto sopran { \textIa } + \new Lyrics \lyricsto sopran { \textII } + \new Lyrics \lyricsto sopran { \textIIa } + \new Staff << + \new Voice = maenner { \global \clef "bass" \oneVoice \pausen } + \new Voice = tenor { \global \clef "bass" \voiceOne \melodieTenor } + \new Voice = bass { \global \clef "bass" \voiceTwo \melodieBass } + >> + >> + \layout { + indent = #0 + \context { + \Staff + \RemoveEmptyStaves + \override VerticalAxisGroup #'remove-first = ##t + } + } +} + diff --git a/Die_Botschaft/stimmen.ly b/Die_Botschaft/stimmen.ly new file mode 100644 index 0000000..df4e750 --- /dev/null +++ b/Die_Botschaft/stimmen.ly @@ -0,0 +1,170 @@ +%some settings% vim: ai sw=2 lbr nu et + + \version "2.18" + + global = { + \key d \major + %\override Staff.TimeSignature #'style = #'() + \time 3/4 + \partial 4 + \autoBeamOff + } + +% Die Stimmen + + pausen = { + \repeat volta 2 { + s4 | + s2.*7 | + s2 + } + \repeat volta 2 { + s4 | + s2.*3 | + s2 r4 | + s2.*2 | + } + \alternative { + { + s2. | + s2 + } + { \set Timing.measurePosition = #(ly:make-moment 0) + s2. | + s2 \bar "|." + } + } + } + + melodieSopran = \relative fis' { + \repeat volta 2 { + fis8[ e] | + d4.( e8) fis[ g] | + a2 h8[ cis] | + d4( cis) h | + a2\breathe h8[ cis] | + d4( cis) h | + a h cis | + d( a) g | + fis2 + } + \repeat volta 2 { + fis8[ e] | + d4.( e8) fis[ g] | + a2 d8[ cis] | + h2 h4 | + a2 s4 | + d4 cis h | + a( h) cis | + } + \alternative { + { + d( a) g | + fis2 + } + { \set Timing.measurePosition = #(ly:make-moment 0) + d'4( fis) e | + d2 \bar "|." + } + } + } + + melodieAlt = \relative d' { + \repeat volta 2 { + d4 | + d2 d4 | + e2 e4 | + fis( a) g | + fis2\breathe g8[ a] | + a2 fis4 | + fis e g | + fis( e4.) d8 | + cis2 + } + \repeat volta 2 { + d4 | + d2 d4 | + e2 d4 | + d2 d8[ e] | + fis2 s4 | + h a fis | + fis( e) g | + } + \alternative { + { + fis( e4.) d8 | + cis2 + } + { \set Timing.measurePosition = #(ly:make-moment 0) + fis4( h8[ a]) g[ a] | + fis2 \bar "|." + } + } + } + + melodieTenor = \relative a { + \repeat volta 2 { + a8[ g] | + fis4.( g8) a[ h] | + a2 g4 | + h( a) d | + d2\breathe d8[ e] | + fis4( e) d | + cis h g8[ a] | + h4( e,) h' | + ais2 + } + \repeat volta 2 { + a8[ g] | + fis4.( g8) a[ h] | + a2 fis4 | + g4.( a8) h[ cis] | + d2 s4 | + fis e d | + cis( h) g8[ a] | + } + \alternative { + { + h4( e,) h' | + ais2 + } + { \set Timing.measurePosition = #(ly:make-moment 0) + h4( d8[ cis]) h[ cis] | + 2 \bar "|." + } + } + } + + melodieBass = \relative d { + \repeat volta 2 { + d4 | + d2 d4 | + cis2 e4 | + h( fis') g | + d2\breathe g4 | + fis( a) h | + fis g e | + h( cis) e | + fis2 + } + \repeat volta 2 { + d4 | + d2 d4 | + cis2 h8[ a] | + g2 g'4 | + d2 s4 | + h cis d8[ e] | + fis4( g) e | + } + \alternative { + { + h( cis) e | + fis2 + } + { \set Timing.measurePosition = #(ly:make-moment 0) + h,4 g a | + d2 \bar "|." + } + } + } + diff --git a/Die_Botschaft/texte.ly b/Die_Botschaft/texte.ly new file mode 100644 index 0000000..7bccfbd --- /dev/null +++ b/Die_Botschaft/texte.ly @@ -0,0 +1,26 @@ +%some settings% vim: ai sw=2 lbr nu et + +% Abkürzungen + +% Die Textaufteilungen + + textI = \lyricmode { + \set stanza = "1." + Zu Beth -- le -- hem der En -- gel sprach: Ihr Hir -- ten, schaut in dem Stall dort nach, + \set stanza = "1.-2." + Weih -- nacht, o Weih -- nacht, gold -- ner Strahl, leuch -- tet so hell ins Er -- den -- tal, Er -- den -- tal! + } + + textIa = \lyricmode { + dort ist das Kind zur Welt ge -- bracht, das hell er -- leuch -- tet die dunk -- le Nacht. + } + + textII = \lyricmode { + \set stanza = "2." + So las -- set uns mit fro -- hem Klang den Her -- ren prei -- sen im Lob -- ge -- sang, + } + + textIIa = \lyricmode { + er hat die gan -- ze Welt ge -- macht und uns er -- löst aus der Sün -- den -- nacht! + } + -- cgit v1.2.3-70-g09d2