diff options
Diffstat (limited to 'Abend_ward_bald_kommt_die_Nacht')
-rw-r--r-- | Abend_ward_bald_kommt_die_Nacht/Abend_ward_bald_kommt_die_Nacht.ly | 39 | ||||
-rw-r--r-- | Abend_ward_bald_kommt_die_Nacht/stimmen.ly | 37 | ||||
-rw-r--r-- | Abend_ward_bald_kommt_die_Nacht/texte.ly | 34 |
3 files changed, 110 insertions, 0 deletions
diff --git a/Abend_ward_bald_kommt_die_Nacht/Abend_ward_bald_kommt_die_Nacht.ly b/Abend_ward_bald_kommt_die_Nacht/Abend_ward_bald_kommt_die_Nacht.ly new file mode 100644 index 0000000..4daadb6 --- /dev/null +++ b/Abend_ward_bald_kommt_die_Nacht/Abend_ward_bald_kommt_die_Nacht.ly @@ -0,0 +1,39 @@ +\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") + +\header { + title = "Abend ward, bald kommt die Nacht" + tagline = "" +} +\paper { + top-margin = 5 +} + +\score { + \new ChoirStaff << + \set Score.skipBars = ##t + \new Staff << + \new Voice = "sopran" { \global \voiceOne \sopranMelodie } + \new Voice = "alt" { \global \voiceTwo \altMelodie } + >> + \new Lyrics = "textEins" {} + \new Lyrics = "textZwei" {} + \new Lyrics = "textDrei" {} + \new Lyrics = "textVier" {} + \new Staff = "maenner" << + \new Voice = "tenor" { \global \clef "bass" \voiceOne \tenorMelodie } + \new Voice = "bass" { \global \clef "bass" \voiceTwo \bassMelodie } + >> + \context Lyrics = "textEins" \lyricsto "bass" \textI + \context Lyrics = "textZwei" \lyricsto "bass" \textII + \context Lyrics = "textDrei" \lyricsto "bass" \textIII + \context Lyrics = "textVier" \lyricsto "bass" \textIV + >> + \layout { + indent = #0 + } +} diff --git a/Abend_ward_bald_kommt_die_Nacht/stimmen.ly b/Abend_ward_bald_kommt_die_Nacht/stimmen.ly new file mode 100644 index 0000000..be81e31 --- /dev/null +++ b/Abend_ward_bald_kommt_die_Nacht/stimmen.ly @@ -0,0 +1,37 @@ +%some settings% vim: ai sw=2 lbr nu et + + \version "2.12" + + global = { + \key g \major + %\override Staff.TimeSignature #'style = #'() + \time 4/4 + \autoBeamOff + } + +% Die Stimmen + + sopranMelodie = \relative g' { + g4 a h g8[ d] | e4 fis g2\breathe | + c4 h a a | h1\breathe | h4 c d4. d8 | + c4 h a2\breathe | d,4 g a a | g1 | \bar "|." + } + + altMelodie = \relative d' { + d4 d d d | c c e2\breathe | + e4 e e fis | g1\breathe | g4 g g fis | + e d8[ e] fis2\breathe | d4 h e d | h1 | \bar "|." + } + + tenorMelodie = \relative h { + h4 fis g g | g a h2\breathe | + a4 a a d | d1\breathe | d4 c h a | + g h8[ c] d4\breathe a~( | a8[ fis]) g4 g fis | d1 | \bar "|." + } + + bassMelodie = \relative g { + g4 d g, h | c a e'2\breathe | + a,4 h c d | g1\breathe | g4 e g d | + e g d2 | h4 e8[ d] c4 d | g,1 | \bar "|." + } + diff --git a/Abend_ward_bald_kommt_die_Nacht/texte.ly b/Abend_ward_bald_kommt_die_Nacht/texte.ly new file mode 100644 index 0000000..851df1f --- /dev/null +++ b/Abend_ward_bald_kommt_die_Nacht/texte.ly @@ -0,0 +1,34 @@ +%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+ textI = \lyricmode {
+ \set stanza = "1."
+ A -- bend ward, bald kommt die Nacht,
+ schla -- fen geht die Welt;
+ denn sie weiß, es ist die Wacht
+ ü -- ber ihr be -- stellt.
+ }
+ textII = \lyricmode {
+ \set stanza = "2."
+ Ei -- ner wacht und trägt al -- lein
+ ih -- re Müh und Plag,
+ der lässt kei -- nen ein -- sam sein
+ we -- der Nacht noch Tag.
+ }
+ textIII = \lyricmode {
+ \set stanza = "3."
+ Je -- su Christ, mein Hort und Halt,
+ dein ge -- denk ich nun,
+ tu mit Bit -- ten dir Ge -- walt:
+ bleib bei mei -- nem Ruh'n!
+ }
+ textIV = \lyricmode {
+ \set stanza = "4."
+ Wenn dein Aug ob mei -- nem wacht,
+ wenn dein Trost mir frommt,
+ weiß ich, dass auf gu -- te Nacht
+ gu -- ter Mor -- gen kommt.
+ }
|