initial commit
This commit is contained in:
@@ -0,0 +1,2 @@
|
|||||||
|
*/*.pdf
|
||||||
|
*/.vscode
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
%\header {
|
||||||
|
% title = "GL 222"
|
||||||
|
%}
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "adeste_fideles_vars.ly"
|
||||||
|
|
||||||
|
\score{
|
||||||
|
\Song.LeadsheetScore
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
%\header {
|
||||||
|
% title = "GL 222"
|
||||||
|
%}
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
\include "adeste_fideles_vars.ly"
|
||||||
|
|
||||||
|
\score{
|
||||||
|
\Song.SongsheetScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,84 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
%\header {
|
||||||
|
% title = "GL 222"
|
||||||
|
%}
|
||||||
|
|
||||||
|
Song.Voice.Chorus = {
|
||||||
|
g4 | g fis g a | g2 d4
|
||||||
|
h | h a h c' | h2 a4 \breathe
|
||||||
|
d' | c' h a g | fis2 g4
|
||||||
|
c' | h2 a4. g8 | g2 r4
|
||||||
|
}
|
||||||
|
Song.Voice.Verse = {
|
||||||
|
g4 | 2 d4 g | a2 d |
|
||||||
|
h4 a h c' | h2 a4 \breathe
|
||||||
|
g4 | 2 fis4 e | fis (g) a h8 (g) fis2 (e4.) d8 2. r4
|
||||||
|
d'2 c'4 h | c'2 h |
|
||||||
|
a4 h g a | fis (e) d \breathe
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.Lyrics.German.VerseI = \lyricmode {
|
||||||
|
\set stanza = "1."
|
||||||
|
Nun freut euch, ihr Chris -- ten,
|
||||||
|
sin -- get Ju -- bel -- lie -- der
|
||||||
|
und kom -- met, o kom -- met nach Bet -- le -- hem.
|
||||||
|
Chri -- stus der Hei -- land
|
||||||
|
stieg zu uns her -- nie -- der.
|
||||||
|
}
|
||||||
|
Song.Lyrics.German.VerseII = \lyricmode {
|
||||||
|
\set stanza = "2."
|
||||||
|
O se -- het die Hir -- ten
|
||||||
|
ei -- len von den Her -- den
|
||||||
|
und su -- chen das Kind nach des En -- gels Wort;
|
||||||
|
geh'n wir mit ih -- nen,
|
||||||
|
Frie -- de soll uns wer -- den
|
||||||
|
}
|
||||||
|
Song.Lyrics.German.VerseIII = \lyricmode {
|
||||||
|
\set stanza = "3."
|
||||||
|
Der Ab -- glanz des Va -- ters,
|
||||||
|
Herr der Her -- ren al -- le,
|
||||||
|
ist heu -- te er -- schie -- nen in un -- ser'm Fleisch:
|
||||||
|
Gott ist ge -- bo -- ren
|
||||||
|
als ein Kind im Stal -- le.
|
||||||
|
}
|
||||||
|
Song.Lyrics.German.Chorus = \lyricmode {
|
||||||
|
\set stanza = "Ref."
|
||||||
|
Kommt, las -- set uns an -- be -- ten,
|
||||||
|
kommt, las -- set uns an -- be -- ten,
|
||||||
|
kommt, las -- set uns an -- be -- ten
|
||||||
|
den Kö -- nig, den Herrn.
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.Chords = \chordmode {
|
||||||
|
s4 | d1 | s | d | h2:m a | h:m e:m | a g | d a | d1
|
||||||
|
d | a | d | a | h:m | a | e | a
|
||||||
|
d | g2 d | h:m g | a2.
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.VocalScore = {
|
||||||
|
% Deutscher Text
|
||||||
|
<<
|
||||||
|
\new Staff {
|
||||||
|
\key g \major
|
||||||
|
\time 2/2
|
||||||
|
\partial 4
|
||||||
|
\fixed c' {
|
||||||
|
\new Voice = "chorus" {\Song.Voice.Chorus \bar "||"}
|
||||||
|
\new Voice = "verse" {\Song.Voice.Verse \bar "|."}
|
||||||
|
}}
|
||||||
|
\new Lyrics <<
|
||||||
|
\lyricsto "verse" {\Song.Lyrics.German.VerseI }
|
||||||
|
\lyricsto "chorus" {\Song.Lyrics.German.Chorus}
|
||||||
|
>>
|
||||||
|
\new Lyrics \lyricsto "verse" {\Song.Lyrics.German.VerseII}
|
||||||
|
\new Lyrics \lyricsto "verse" {\Song.Lyrics.German.VerseIII}
|
||||||
|
>>
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.SongsheetScore = \transpose g d {\Song.VocalScore}
|
||||||
|
|
||||||
|
Song.LeadsheetScore = <<
|
||||||
|
\new ChordNames {\Song.Chords}
|
||||||
|
\Song.SongsheetScore
|
||||||
|
>>
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
[%
|
||||||
|
song_title = 'Adeste Fideles';
|
||||||
|
scores = {
|
||||||
|
congregation = 'freie_lieder/adeste_fideles/adeste_fideles_lz.ly'
|
||||||
|
leadsheet = 'freie_lieder/adeste_fideles/adeste_fideles_leadsheet.ly'
|
||||||
|
}
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "gregorian.ly"
|
||||||
|
\include "agnus_dei_xviii_vars.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
\FullScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
\include "gregorian.ly"
|
||||||
|
\include "agnus_dei_xviii_vars.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
\VocalScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "gregorian.ly"
|
||||||
|
\include "agnus_dei_xviii_vars.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
\VocalScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "gregorian.ly"
|
||||||
|
|
||||||
|
chant.meta = {
|
||||||
|
\key b \major
|
||||||
|
\time 1/4
|
||||||
|
\repeat volta 3 {
|
||||||
|
s4*5 \divisioMinima
|
||||||
|
s4*9 \divisioMinima
|
||||||
|
\alternative {
|
||||||
|
\volta 1,2 {s4*7}
|
||||||
|
\volta 3 {s4*8}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
\finalis
|
||||||
|
}
|
||||||
|
chant.cantus = \fixed c' {
|
||||||
|
\repeat volta 3 {
|
||||||
|
f4 f f (g) g4
|
||||||
|
s g g g f g es f g
|
||||||
|
\alternative {
|
||||||
|
\volta 1,2 {f g a f g (f) f4}
|
||||||
|
\volta 3 {f g a f g (f) f4 s}
|
||||||
|
}}
|
||||||
|
}
|
||||||
|
chant.verba = \lyricmode {
|
||||||
|
\set stanza = "V"
|
||||||
|
A -- gnus De -- i,
|
||||||
|
\set stanza = "A"
|
||||||
|
qui tol -- lis pec -- ca -- ta mun -- di:
|
||||||
|
mi -- se -- re -- re no -- bis.
|
||||||
|
do -- na no -- bis pa -- cem.
|
||||||
|
}
|
||||||
|
chant.A = \fixed c' {
|
||||||
|
d2 c2 d4
|
||||||
|
s4 d es2 s4 c2 d
|
||||||
|
d2 c2 d2 c4
|
||||||
|
d2 c2 d2 c4
|
||||||
|
}
|
||||||
|
chant.T = \relative {
|
||||||
|
b2 a2 g4
|
||||||
|
s4 b c2 s4 g2 b
|
||||||
|
a2 f2( f4) g a
|
||||||
|
a2 f2( f4) g a
|
||||||
|
}
|
||||||
|
chant.B = \relative {
|
||||||
|
s4*5
|
||||||
|
b,2 c s4 es2 b
|
||||||
|
d2 a2 b2 f4
|
||||||
|
d'2 a2 b2 f4
|
||||||
|
}
|
||||||
|
|
||||||
|
VocalScore = \new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice = "melody" <<\chant.meta \chant.cantus>>
|
||||||
|
\new GregorianTranscriptionLyrics \lyricsto melody {\chant.verba}
|
||||||
|
>>
|
||||||
|
|
||||||
|
FullScore = \new StaffGroup <<
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice = "melody" <<\voiceOne \chant.meta \chant.cantus>>
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceTwo\chant.meta \chant.A>>
|
||||||
|
>>
|
||||||
|
\new GregorianTranscriptionLyrics \lyricsto melody {\chant.verba}
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\clef bass
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceOne \chant.meta \chant.T>>
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceTwo\chant.meta \chant.B>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
[%
|
||||||
|
scores = {
|
||||||
|
SATB = 'freie_lieder/agnus_dei_xviii/agnus_dei_xviii_schola.ly'
|
||||||
|
congregation = 'freie_lieder/agnus_dei_xviii/agnus_dei_xviii_lz.ly'
|
||||||
|
band = 'freie_lieder/agnus_dei_xviii/agnus_dei_xviii_full.ly'
|
||||||
|
};
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "gregorian.ly"
|
||||||
|
\include "agnus_dei_xviii_de_vars.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
\FullScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
\include "gregorian.ly"
|
||||||
|
\include "agnus_dei_xviii_de_vars.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
\VocalScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "gregorian.ly"
|
||||||
|
\include "agnus_dei_xviii_de_vars.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
\VocalScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "gregorian.ly"
|
||||||
|
|
||||||
|
chant.meta = {
|
||||||
|
\key b \major
|
||||||
|
\time 1/4
|
||||||
|
\repeat volta 3 {
|
||||||
|
s4*4 \divisioMinima
|
||||||
|
s4*10 \divisioMinima
|
||||||
|
\alternative {
|
||||||
|
\volta 1,2 {s4*7}
|
||||||
|
\volta 3 {s4*8}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
\finalis
|
||||||
|
}
|
||||||
|
chant.cantus = \fixed c' {
|
||||||
|
\repeat volta 3 {
|
||||||
|
f4 f (g) g4
|
||||||
|
s g g g g f g es f g
|
||||||
|
\alternative {
|
||||||
|
\volta 1,2 {f g a f g (f) f4}
|
||||||
|
\volta 3 {f g a f g (f) f4 s}
|
||||||
|
}}
|
||||||
|
}
|
||||||
|
chant.verba = \lyricmode {
|
||||||
|
\set stanza = "K"
|
||||||
|
Lamm Got -- tes,
|
||||||
|
\set stanza = "A"
|
||||||
|
Du nimmst hin -- weg die Sün -- de der Welt:
|
||||||
|
er -- bar -- me Dich un -- ser.
|
||||||
|
gib uns Dei -- nen Frie -- den.
|
||||||
|
}
|
||||||
|
chant.A = \fixed c' {
|
||||||
|
d4 c2 d4
|
||||||
|
d2 es s c s4 b,
|
||||||
|
s c2 s4 d2 c4
|
||||||
|
d2 c2 d2 c4
|
||||||
|
}
|
||||||
|
chant.T = \relative {
|
||||||
|
b4 a2 g4
|
||||||
|
b2 c s g s4 g
|
||||||
|
s f2( s4 f) g a
|
||||||
|
a2 f2( f4) g a
|
||||||
|
}
|
||||||
|
chant.B = \relative {
|
||||||
|
s2*2
|
||||||
|
b,2 c s es s4 g,
|
||||||
|
s a2 s4 b2 f4
|
||||||
|
d'2 a2 b2 f4
|
||||||
|
}
|
||||||
|
|
||||||
|
VocalScore = \new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice = "melody" <<\chant.meta \chant.cantus>>
|
||||||
|
\new GregorianTranscriptionLyrics \lyricsto melody {\chant.verba}
|
||||||
|
>>
|
||||||
|
|
||||||
|
FullScore = \new StaffGroup <<
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice = "melody" <<\voiceOne \chant.meta \chant.cantus>>
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceTwo\chant.meta \chant.A>>
|
||||||
|
>>
|
||||||
|
\new GregorianTranscriptionLyrics \lyricsto melody {\chant.verba}
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\clef bass
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceOne \chant.meta \chant.T>>
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceTwo\chant.meta \chant.B>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
[%
|
||||||
|
scores = {
|
||||||
|
SATB = 'freie_lieder/agnus_dei_xviii_de/agnus_dei_xviii_de_schola.ly'
|
||||||
|
band = 'freie_lieder/agnus_dei_xviii_de/agnus_dei_xviii_de_full.ly'
|
||||||
|
congregation = 'freie_lieder/agnus_dei_xviii_de/agnus_dei_xviii_de_lz.ly'
|
||||||
|
};
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "andachtsjodler_vars.ly"
|
||||||
|
|
||||||
|
\header {
|
||||||
|
title = "Andachtsjodler"
|
||||||
|
}
|
||||||
|
\score {
|
||||||
|
<<
|
||||||
|
\Song.SATBScore
|
||||||
|
>>
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Staff
|
||||||
|
\RemoveAllEmptyStaves
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
\include "andachtsjodler_vars.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
\Song.SATBScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
Song.Music.Meta = {
|
||||||
|
\key d \major
|
||||||
|
\time 2/4
|
||||||
|
s2*8 \bar "|."
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.Melody.S = \fixed c' {
|
||||||
|
fis4 8 a | e2 | g4 8 h | fis2 | a4 4 | d'4.\fermata cis'16\fermata h\fermata | a8 g e g | fis2
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.Music.A = \fixed c' {
|
||||||
|
d4 8 fis | cis2 | e4 8 g | d2 | fis4 4 | h4. a16 g | fis8 e cis e | d2
|
||||||
|
}
|
||||||
|
Song.Music.T = \fixed c {
|
||||||
|
a4 8 d' | a2 | 4 h8 d' | a2 | d'4 4 | g'4. e'16 d' | cis'8 h a h | a2
|
||||||
|
}
|
||||||
|
Song.Music.B = \fixed c {
|
||||||
|
d4 8 8 | a2 | a4 g8 8 | d2 | 4 4 | g,4.\fermata 16\fermata 16\fermata a,8 8 8 8 | d2
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.Lyrics = \lyricmode {
|
||||||
|
Djo, djo -- i -- ri,
|
||||||
|
djo, djo -- i -- ri,
|
||||||
|
djo, djo -- ri -- ri -- di
|
||||||
|
jo -- e djo -- i -- ri.
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.SATBScore = <<
|
||||||
|
\new ChoirStaff <<
|
||||||
|
\new Staff \with {\consists Merge_rests_engraver } <<
|
||||||
|
\Song.Music.Meta
|
||||||
|
\new Voice = "melody" <<\voiceOne {\Song.Melody.S}>>
|
||||||
|
\new Voice <<\voiceTwo\Song.Music.A>>
|
||||||
|
>>
|
||||||
|
\new Lyrics \lyricsto "melody" {\Song.Lyrics}
|
||||||
|
\new Staff \with {\consists Merge_rests_engraver } <<
|
||||||
|
\clef bass
|
||||||
|
<<
|
||||||
|
\Song.Music.Meta
|
||||||
|
\new Voice <<\voiceOne \Song.Music.T>>
|
||||||
|
\new Voice <<\voiceTwo \Song.Music.B>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
[%
|
||||||
|
song_title = 'Andachtsjodler';
|
||||||
|
scores = {
|
||||||
|
congregation = "freie_lieder/andachtsjodler/andachtsjodler_lz.ly"
|
||||||
|
SATB = "freie_lieder/andachtsjodler/andachtsjodler_SATB.ly"
|
||||||
|
};
|
||||||
|
%]
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
[%
|
||||||
|
song_title = "Christus Vincit";
|
||||||
|
scores = {
|
||||||
|
leadsheet = "freie_lieder/christus_vincit/christus_vincit_leadsheet.ly"
|
||||||
|
congregation = "freie_lieder/christus_vincit/christus_vincit_lz.ly"
|
||||||
|
}
|
||||||
|
%]
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "christus_vincit_vars.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
<<
|
||||||
|
\new ChordNames {
|
||||||
|
\Song.Chords
|
||||||
|
}
|
||||||
|
{\Song.FullScore}
|
||||||
|
>>
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
\include "christus_vincit_vars.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
{\Song.FullScore}
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
Song.Melody = \fixed c' {
|
||||||
|
\autoBeamOff
|
||||||
|
a4 a c' c' |
|
||||||
|
f f a a |
|
||||||
|
d' g c' f8[ b] | a4( g8.) f16 2
|
||||||
|
\bar "|."
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.Chords = \chordmode {
|
||||||
|
f2 c d:m a:m b4 c f d:m f c f2
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.Lyrics = \lyricmode {
|
||||||
|
\set stanza = "V/A"
|
||||||
|
Chris -- tus vin -- cit. Chris -- tus reg -- nat. Chris -- tus, Chris -- tus im -- pe -- rat.
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.FullScore = {
|
||||||
|
<<
|
||||||
|
\new Staff {
|
||||||
|
\key f \major
|
||||||
|
\time 2/2
|
||||||
|
\new Voice = "melody" {\Song.Melody}
|
||||||
|
}
|
||||||
|
\new Lyrics \lyricsto "melody" {\Song.Lyrics}
|
||||||
|
>>
|
||||||
|
}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
[%
|
||||||
|
title = 'Der Engel des Herrn'
|
||||||
|
scores = {
|
||||||
|
band = 'freie_lieder/der_engel_des_herrn/der_engel_des_herrn_leadsheet.ly'
|
||||||
|
SATB = 'freie_lieder/der_engel_des_herrn/der_engel_des_herrn_SATB.ly'
|
||||||
|
congregation = 'freie_lieder/der_engel_des_herrn/der_engel_des_herrn_lz.ly'
|
||||||
|
}
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
% GL 218
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "der_engel_des_herrn_vars.ly"
|
||||||
|
|
||||||
|
\score{
|
||||||
|
\Song.SATBScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
% GL 218
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "der_engel_des_herrn_vars.ly"
|
||||||
|
|
||||||
|
\score{
|
||||||
|
\Song.LeadsheetScore
|
||||||
|
}
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
% GL 218
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
\include "der_engel_des_herrn_vars.ly"
|
||||||
|
|
||||||
|
\score{
|
||||||
|
\Song.MelodyScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,105 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
% GL 218
|
||||||
|
|
||||||
|
Song.meta = {
|
||||||
|
\key es \major
|
||||||
|
\time 3/4
|
||||||
|
\partial 4
|
||||||
|
\phrasingSlurDashed
|
||||||
|
s4 s2.*3 s2 \breathe
|
||||||
|
s4 s2.*3 s2 \breathe
|
||||||
|
s4 s2.*3 s2 \breathe
|
||||||
|
s4 s2.*3 s2 \bar "|."
|
||||||
|
}
|
||||||
|
Song.S = \relative c' {
|
||||||
|
g'4 | g \(f\) g | b2 c8 (b) | as2 b8 \(as\) | g2
|
||||||
|
4 | g (f) g | b2 c8 (b) | as2 b8 (as) | g2
|
||||||
|
b4 | b \(as\) g | f2 g8 (b) | 4 (as) g | f2
|
||||||
|
b4 | g2 c4 | b4. (c8) b (as) | g2 f4 | es2
|
||||||
|
}
|
||||||
|
Song.lyrics.stropheEins = \lyricmode {
|
||||||
|
\set stanza = "1."
|
||||||
|
Der En -- gel des Herrn aus Got -- tes _ Macht
|
||||||
|
hat \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- \markup{\smallCaps a} die Bot -- schaft bracht:
|
||||||
|
Sie soll _ die Mut -- ter Got -- tes sein
|
||||||
|
und blei -- ben ei -- ne Jung -- frau rein.
|
||||||
|
}
|
||||||
|
Song.lyrics.stropheZwei = \lyricmode {
|
||||||
|
\set stanza = "2."
|
||||||
|
\markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- _ \markup{\smallCaps a} sprach: „Ich bin ganz _ rein
|
||||||
|
und will die Magd des Her -- ren sein.
|
||||||
|
Dein Wil -- le, o Herr, ge -- scheh an mir,
|
||||||
|
mein Herz, o Gott, das schenk ich Dir.“
|
||||||
|
}
|
||||||
|
Song.lyrics.stropheDrei = \lyricmode {
|
||||||
|
\set stanza = "3."
|
||||||
|
Das hei -- li -- ge Wort, das Fleisch wor -- den ist
|
||||||
|
und wird ge -- nannt Herr \markup{\smallCaps Je} -- \markup{\smallCaps sus} Christ.
|
||||||
|
Dein bit -- te -- res Leid, o gro -- ßer Gott,
|
||||||
|
das stär -- ke mich in mei -- nem Tod.
|
||||||
|
}
|
||||||
|
Song.lyrics.stropheVier = \lyricmode {
|
||||||
|
\set stanza = "4."
|
||||||
|
Herr \markup{\smallCaps Je} -- _ \markup{\smallCaps sus} Christ, hab noch ei -- ne Bitt:
|
||||||
|
Ver -- lass die ar -- men See -- len nit
|
||||||
|
und füh -- _ re sie aus ih -- rer Pein
|
||||||
|
zu Dir in Dei -- nen Him -- mel ein.
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.A = \relative c' {
|
||||||
|
\repeat unfold 2 {
|
||||||
|
es4 | 2.~ | 2. | 4 c d | es2
|
||||||
|
}
|
||||||
|
g4 g( f) es | d2 es4 | f2 es4 | d2
|
||||||
|
4 | es d es | es d f | es c d | b2
|
||||||
|
}
|
||||||
|
Song.T = \relative {
|
||||||
|
\repeat unfold 2 {
|
||||||
|
b4 | b as b | g es as8 g | f2. | es2
|
||||||
|
}
|
||||||
|
b'4 | 2.~ | b~ | b~ | 2
|
||||||
|
f4 | es2 as4 | b2 c4 | b2 as4 | g2
|
||||||
|
}
|
||||||
|
Song.B = \relative {
|
||||||
|
\repeat unfold 2 {
|
||||||
|
es4 | 2.~ | 2. | f2 b,4 | es2
|
||||||
|
}
|
||||||
|
es4 | 2 g4 | b b, es | d2 es4 | b2
|
||||||
|
4 c b as | g2 as4 | b2 4 | es2
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.Chords = \chordmode {
|
||||||
|
s4 | c2. | s | g | c |
|
||||||
|
c | s | g | c |
|
||||||
|
c | g | c | g |
|
||||||
|
a2:m d4:m | c2. | s2 g4 | c2
|
||||||
|
}
|
||||||
|
Song.MelodyScore = \new Staff <<
|
||||||
|
\new Voice = "melody" <<\Song.meta \Song.S>>
|
||||||
|
\new Lyrics \lyricsto melody {\Song.lyrics.stropheEins}
|
||||||
|
\new Lyrics \lyricsto melody {\Song.lyrics.stropheZwei}
|
||||||
|
\new Lyrics \lyricsto melody {\Song.lyrics.stropheDrei}
|
||||||
|
\new Lyrics \lyricsto melody {\Song.lyrics.stropheVier}
|
||||||
|
>>
|
||||||
|
|
||||||
|
Song.SATBScore = \new ChoirStaff <<
|
||||||
|
\new Staff <<
|
||||||
|
\new Voice = "melody" <<\voiceOne \Song.meta \Song.S>>
|
||||||
|
\new Voice <<\voiceTwo \Song.meta \Song.A>>
|
||||||
|
>>
|
||||||
|
\new Lyrics \lyricsto melody {\Song.lyrics.stropheEins}
|
||||||
|
\new Lyrics \lyricsto melody {\Song.lyrics.stropheZwei}
|
||||||
|
\new Lyrics \lyricsto melody {\Song.lyrics.stropheDrei}
|
||||||
|
\new Lyrics \lyricsto melody {\Song.lyrics.stropheVier}
|
||||||
|
\new Staff <<
|
||||||
|
\clef bass
|
||||||
|
\new Voice <<\voiceOne \Song.meta \Song.T>>
|
||||||
|
\new Voice <<\voiceTwo \Song.meta \Song.B>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
|
|
||||||
|
Song.LeadsheetScore = <<
|
||||||
|
\new ChordNames {\Song.Chords}
|
||||||
|
\transpose g e \Song.MelodyScore
|
||||||
|
>>
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[%
|
||||||
|
scores.congregation = 'freie_lieder/erbarme_dich_meiner_GL_639_1/erbarme_dich_meiner.ly';
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
\version "2.22.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
%GL 639 1
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
Song.Melody = \relative {
|
||||||
|
\key a \minor
|
||||||
|
\time 4/2
|
||||||
|
\partial 2
|
||||||
|
e'2 | a2 4 4 g2 e4 g | a2 \breathe
|
||||||
|
h c h4 a | g2( f) e \bar "|."
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.Lyrics = \lyricmode {
|
||||||
|
\set stanza = "V/A"
|
||||||
|
Er -- bar -- me Dich mei -- ner, o Gott, er -- bar -- me Dich mei -- ner.
|
||||||
|
}
|
||||||
|
|
||||||
|
\score {
|
||||||
|
<<
|
||||||
|
\new Voice = "melody" {\Song.Melody}
|
||||||
|
\new Lyrics \lyricsto "melody" {\Song.Lyrics}
|
||||||
|
>>
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[%
|
||||||
|
scores.congregation = 'freie_lieder/hallaluja_174_3/hallaluja_174_3.ly';
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
\version "2.22.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
Song.Melody = \relative {
|
||||||
|
\key c \major
|
||||||
|
\time 9/2
|
||||||
|
a'4 g a2 d, \breathe
|
||||||
|
f4 g a (c) a g f (g) e2 d \bar "|."
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.Lyrics = \lyricmode {
|
||||||
|
\set stanza = "V/A"
|
||||||
|
\repeat unfold 2 {Hal -- le -- lu -- ja,} Hal -- le -- lu -- ja.
|
||||||
|
}
|
||||||
|
|
||||||
|
\score {
|
||||||
|
<<
|
||||||
|
\new Voice = "melody" {\Song.Melody}
|
||||||
|
\new Lyrics \lyricsto "melody" {\Song.Lyrics}
|
||||||
|
>>
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
\context{
|
||||||
|
\Staff
|
||||||
|
\remove "Time_signature_engraver"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[%
|
||||||
|
scores.congregation = 'freie_lieder/hallaluja_174_4/hallaluja_174_4.ly';
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "halleluja_174_4_vars.ly"
|
||||||
|
|
||||||
|
\header {
|
||||||
|
title = "GL 174, 4"
|
||||||
|
% composer = "M: aus \"Vom Himmel hoch, o Engel, kommt!\", Köln 1623"
|
||||||
|
% arranger = "S: Leopold Fajtak 2023"
|
||||||
|
% poet = "T: Liturgie"
|
||||||
|
copyright = \markup\column{"Text: Liturgie; Melodie aus \"Vom Himmel hoch, o Engel, kommt!\", Köln 1623; "
|
||||||
|
"Satz: Leopold Fajtak; Lizensiert von Leopold Fajtak unter CC BY-NC-ND 4.0."}
|
||||||
|
}
|
||||||
|
\score {
|
||||||
|
\Song.SATBScore
|
||||||
|
\layout {
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
\include "halleluja_174_4_vars.ly"
|
||||||
|
\score {
|
||||||
|
\Song.MelodyScore
|
||||||
|
\layout {
|
||||||
|
\context{
|
||||||
|
\Staff
|
||||||
|
\remove BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
Song.Meta = {
|
||||||
|
\key f \major
|
||||||
|
\time 3/8
|
||||||
|
\partial 8
|
||||||
|
\autoBeamOff
|
||||||
|
s8 | s4.*3 | s4 \breathe
|
||||||
|
s8 | s4.*3 | s4 \bar "|."
|
||||||
|
}
|
||||||
|
Song.Melody = \relative c' {
|
||||||
|
\autoBeamOff
|
||||||
|
c'8 | 4 b8 | a4 d8 | c[ b] a | g4
|
||||||
|
c8 | g[ a] b | c4 f,8 | 4 e8 f4
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.A = \fixed c' {
|
||||||
|
f8 | f[ g] d | c4 f8 | 4 8 | e4
|
||||||
|
c8 | d4 8 | f4 c8 | d4 c8 | 4
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.T = \fixed c {
|
||||||
|
a8 | a[ b] f | f4 8 | 4 d8 | e4
|
||||||
|
f8 | 4 8 | a4 8 | g4 8 | a4
|
||||||
|
}
|
||||||
|
Song.B = \relative c {
|
||||||
|
c8 | f,4 8 | 4 b8 | a4 b8 | c4
|
||||||
|
a8 | b4 8 | a4 8 | b4 c8 | f,4
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.Lyrics = \lyricmode {
|
||||||
|
\set stanza = "V/A"
|
||||||
|
\repeat unfold 3 {Hal -- le -- lu -- ja,} Hal -- le -- lu -- ja.
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.MelodyScore = <<
|
||||||
|
\new Voice = "melody" <<\Song.Meta \Song.Melody>>
|
||||||
|
\new Lyrics \lyricsto "melody" {\Song.Lyrics}
|
||||||
|
>>
|
||||||
|
|
||||||
|
Song.SATBScore = \new ChoirStaff <<
|
||||||
|
\new Staff <<\Song.Meta
|
||||||
|
\new Voice = "melody" <<\voiceOne \Song.Melody>>
|
||||||
|
\new Voice = "Alt" <<\voiceTwo \Song.A>>
|
||||||
|
>>
|
||||||
|
\new Lyrics \lyricsto "melody" {\Song.Lyrics}
|
||||||
|
\new Staff <<
|
||||||
|
\clef bass
|
||||||
|
\Song.Meta
|
||||||
|
\new Voice = "Tenor" <<\voiceOne \Song.T>>
|
||||||
|
\new Voice = "Bass" <<\voiceTwo \Song.B>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[%
|
||||||
|
scores.congregation = 'freie_lieder/hallaluja_174_6/hallaluja_174_6.ly';
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
\version "2.22.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
Song.Melody = \relative {
|
||||||
|
\key g \major
|
||||||
|
\time 3/4
|
||||||
|
\partial 4
|
||||||
|
d'4 | h'2 a4 | g2 a8 h | c2 (h4) | a2 \breathe
|
||||||
|
d,4 | d'2 c4 | h2 \breathe c4 | d (c) h | a2 \breathe
|
||||||
|
8 h | c4 (h a) | g2 \bar "|."
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.Lyrics = \lyricmode {
|
||||||
|
\set stanza = "V/A"
|
||||||
|
\repeat unfold 4 {Hal -- le -- lu -- ja,} Hal -- le -- lu -- ja.
|
||||||
|
}
|
||||||
|
|
||||||
|
\score {
|
||||||
|
<<
|
||||||
|
\new Voice = "melody" {\Song.Melody}
|
||||||
|
\new Lyrics \lyricsto "melody" {\Song.Lyrics}
|
||||||
|
>>
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[%
|
||||||
|
scores.congregation = 'freie_lieder/hallaluja_175_5/hallaluja_175_5.ly';
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
\version "2.22.2"
|
||||||
|
\language deutsch
|
||||||
|
\header {
|
||||||
|
% title = "GL 175 7"
|
||||||
|
}
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
\include "gregorian.ly"
|
||||||
|
chant = \fixed c' {
|
||||||
|
\key g \major
|
||||||
|
\time 1/4
|
||||||
|
\override Lyrics.LyricText.X-extent = #'(0 . 3)
|
||||||
|
\clef "treble"
|
||||||
|
fis4 g a8 (h) a4\divisioMinima
|
||||||
|
a8 (g) e (g) fis (e) d4 e8 (c) \tuplet 3/2 {e8 (g fis)} d4 d\finalis
|
||||||
|
}
|
||||||
|
verba = \lyricmode {
|
||||||
|
Al -- le --lu -- ja, al -- le -- lu -- ja, al -- le -- lu -- ja.
|
||||||
|
}
|
||||||
|
\score {
|
||||||
|
\new Staff <<
|
||||||
|
\new Voice = "melody" \chant
|
||||||
|
\new Lyrics = "one" \lyricsto melody \verba
|
||||||
|
>>
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Staff
|
||||||
|
\remove "Time_signature_engraver"
|
||||||
|
\override BarLine.X-extent = #'(-1 . 1)
|
||||||
|
\hide Stem
|
||||||
|
\hide Beam
|
||||||
|
\hide BarLine
|
||||||
|
\hide TupletNumber
|
||||||
|
}
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
[% song_title = "Heil'ges Kreuz sei hochverehret";
|
||||||
|
credits = {
|
||||||
|
lyrics = 'Steyr 1854, Wien 1857'
|
||||||
|
melody = 'Graz 1855, Salzburg 1878'
|
||||||
|
};
|
||||||
|
scores = {
|
||||||
|
leadsheet = 'freie_lieder/heilges_kreuz_sei_hochverehret/heilges_kreuz_sei_hochverehret_leadsheet.ly'
|
||||||
|
congregation = 'freie_lieder/heilges_kreuz_sei_hochverehret/heilges_kreuz_sei_hochverehret_lz.ly'
|
||||||
|
};
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
% GL 823
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "heilges_kreuz_sei_hochverehret_vars.ly"
|
||||||
|
|
||||||
|
\score{
|
||||||
|
\Song.LeadsheetScore
|
||||||
|
}
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
% GL 218
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
\include "heilges_kreuz_sei_hochverehret_vars.ly"
|
||||||
|
|
||||||
|
\score{
|
||||||
|
\Song.MelodyScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,86 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
% GL 218
|
||||||
|
|
||||||
|
Song.melody.moduleI = \fixed c' {
|
||||||
|
\autoBeamOff
|
||||||
|
b4 a8[ g] 4 f | g f8[ es] 4 d \breathe
|
||||||
|
f4 f g c' | b a
|
||||||
|
}
|
||||||
|
Song.melody.verse = \fixed c' {
|
||||||
|
\key b \major
|
||||||
|
\time 4/4
|
||||||
|
\autoBeamOff
|
||||||
|
\repeat unfold 2 {
|
||||||
|
\Song.melody.moduleI b4 r
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Song.melody.chorus = \fixed c' {
|
||||||
|
\autoBeamOff
|
||||||
|
d'4 b b8[ c'] d'4 | c' b a8[ b] c'4 \breathe
|
||||||
|
b a g c'8[ b ] | a4 g f r
|
||||||
|
\Song.melody.moduleI b2
|
||||||
|
}
|
||||||
|
Song.lyrics.verseI = \lyricmode {
|
||||||
|
\set stanza = "1."
|
||||||
|
Heil' -- ges Kreuz, sei hoch ver -- eh -- ret,
|
||||||
|
Baum an dem der Hei -- land hing,
|
||||||
|
wo sich sei -- ne Lieb' be -- wäh -- ret,
|
||||||
|
Lieb', die bis zum To -- de ging.
|
||||||
|
}
|
||||||
|
Song.lyrics.chorus = \lyricmode {
|
||||||
|
\set stanza = "1.-4."
|
||||||
|
Sei mit Mund und Herz ver -- eh -- ret,
|
||||||
|
Kreuz -- stamm Chris -- ti, mei -- nes Herrn.
|
||||||
|
Einst -- mals seh'n wir Dich ver -- klä -- ret,
|
||||||
|
strah -- lend gleich dem Mor -- gen -- stern.
|
||||||
|
}
|
||||||
|
Song.lyrics.verseII = \lyricmode {
|
||||||
|
\set stanza = "2."
|
||||||
|
Heil' -- ges Kreuz, sei uns' -- re Fah -- ne,
|
||||||
|
die uns führt durch Kampf und Not,
|
||||||
|
die uns hal -- te, die uns mah -- ne,
|
||||||
|
treu zu sein bis in den Tod.
|
||||||
|
}
|
||||||
|
Song.lyrics.verseIII = \lyricmode {
|
||||||
|
\set stanza = "3."
|
||||||
|
Kreuz, du Denk -- mal sei -- ner Lei -- den,
|
||||||
|
präg' uns sei -- ne Lie -- be ein,
|
||||||
|
dass wir stets die Sün -- de mei -- den,
|
||||||
|
stets ge -- denk -- ken sei -- ner Pein!
|
||||||
|
}
|
||||||
|
Song.lyrics.verseIV = \lyricmode {
|
||||||
|
\set stanza = "4."
|
||||||
|
Heil' -- ges Kreuz, du Sie -- ges -- zei -- chen,
|
||||||
|
se -- lig, wer auf dich ver -- traut;
|
||||||
|
si -- cher wird sein Ziel er -- rei -- chen,
|
||||||
|
wer auf dich im Le -- ben schaut.
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.Chords.moduleI = \chordmode {
|
||||||
|
a2 d h:m d4 a
|
||||||
|
a2 h:m a4 e a2
|
||||||
|
}
|
||||||
|
Song.Chords.full = \chordmode {
|
||||||
|
\repeat unfold 2 {\Song.Chords.moduleI}
|
||||||
|
a2 d h:7 e
|
||||||
|
fis:m h:7 e s
|
||||||
|
\Song.Chords.moduleI
|
||||||
|
}
|
||||||
|
Song.MelodyScore = \new Staff <<
|
||||||
|
\transpose b a {\new Voice = "melodyVerse" {\Song.melody.verse}
|
||||||
|
\new Voice = "melodyChorus" {\Song.melody.chorus} \bar "|."
|
||||||
|
}
|
||||||
|
\new Lyrics <<
|
||||||
|
\lyricsto melodyVerse {\Song.lyrics.verseI}
|
||||||
|
\lyricsto melodyChorus {\Song.lyrics.chorus}
|
||||||
|
>>
|
||||||
|
% \new Lyrics \lyricsto melodyVerse {\Song.lyrics.verseII}
|
||||||
|
% \new Lyrics \lyricsto melodyVerse {\Song.lyrics.verseIII}
|
||||||
|
\new Lyrics \lyricsto melodyVerse {\Song.lyrics.verseIV}
|
||||||
|
>>
|
||||||
|
|
||||||
|
Song.LeadsheetScore = <<
|
||||||
|
\new ChordNames {\Song.Chords.full}
|
||||||
|
\Song.MelodyScore
|
||||||
|
>>
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
[%
|
||||||
|
scores = {
|
||||||
|
congregation = 'freie_lieder/hy_bevor_des_tages/hy_bevor_des_tages_lz.ly'
|
||||||
|
leadsheet = 'freie_lieder/hy_bevor_des_tages/hy_bevor_des_tages_full.ly'
|
||||||
|
};
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "hy_bevor_des_tages_vars.ly"
|
||||||
|
\include "gregorian.ly"
|
||||||
|
|
||||||
|
\score { \FullScore }
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
\include "hy_bevor_des_tages_vars.ly"
|
||||||
|
\include "gregorian.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
\VocalScore
|
||||||
|
}
|
||||||
@@ -0,0 +1,46 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "gregorian.ly"
|
||||||
|
chant.meta = {
|
||||||
|
\key c \major
|
||||||
|
\set Score.timing = ##f
|
||||||
|
s4*8 \divisioMinima
|
||||||
|
s4*8 \divisioMaior
|
||||||
|
s4*10 \divisioMinima
|
||||||
|
s4*8 \finalis
|
||||||
|
}
|
||||||
|
chant.cantus = \relative c'' {
|
||||||
|
g4 h a c c c h a
|
||||||
|
a c c c g a g f
|
||||||
|
a a g c h a g a(h a)
|
||||||
|
a a g f g a g g
|
||||||
|
}
|
||||||
|
verba.I = \lyricmode {
|
||||||
|
Be -- vor des Ta -- ges Licht ver -- geht,
|
||||||
|
o Herr der Welt, hör dies Ge -- bet:
|
||||||
|
Be -- hü -- te uns in die -- ser Nacht
|
||||||
|
durch Dei -- ne gro -- ße Güt und Macht.
|
||||||
|
}
|
||||||
|
verba.II = \lyricmode {
|
||||||
|
Hüllt Schlaf die mü -- den Glie -- der ein,
|
||||||
|
lass uns in Dir ge -- bor -- gen sein
|
||||||
|
und mach am Mor -- gen uns be -- reit
|
||||||
|
zum Lo -- be Dei -- ner Herr -- lich -- keit.
|
||||||
|
}
|
||||||
|
verba.III = \lyricmode {
|
||||||
|
Dank Dir, o Va -- ter, reich an Macht,
|
||||||
|
der ü -- ber uns voll Gü -- te wacht
|
||||||
|
und mit dem Sohn und Heil -- 'gen Geist
|
||||||
|
des Le -- bens Fül -- le uns ver -- heißt.
|
||||||
|
}
|
||||||
|
|
||||||
|
VocalScore = \new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice = "melody" <<\chant.meta \chant.cantus>>
|
||||||
|
\new GregorianTranscriptionLyrics \lyricsto melody {\verba.I}
|
||||||
|
\new GregorianTranscriptionLyrics \lyricsto melody {\verba.II}
|
||||||
|
\new GregorianTranscriptionLyrics \lyricsto melody {\verba.III}
|
||||||
|
>>
|
||||||
|
FullScore = <<
|
||||||
|
{\VocalScore}
|
||||||
|
>>
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[%
|
||||||
|
scores.congregation = 'freie_lieder/ihr_freunde_gottes_allzugleich/ihr_freunde_gottes_allzugleich.ly';
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,75 @@
|
|||||||
|
\version "2.22.1"
|
||||||
|
\language deutsch
|
||||||
|
%GL 531
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
melody.St = \fixed c' {
|
||||||
|
\key es \major
|
||||||
|
\time 4/4
|
||||||
|
\partial 4
|
||||||
|
\repeat volta 2 {
|
||||||
|
b, 4| \time 4/4 es es f f | \time 6/4 g g es2 r4 as |
|
||||||
|
\time 4/4 g f es es | \time 6/4 c d es2 r4}
|
||||||
|
}
|
||||||
|
melody.KV = \fixed c' {
|
||||||
|
es | \time 4/4 g f g as | b2 c' | b r4 b | c' b g as | b2 c' | b r4
|
||||||
|
b as g f b | g2 f | es r4
|
||||||
|
\bar "|."
|
||||||
|
}
|
||||||
|
|
||||||
|
stropheI.I = \lyricmode {
|
||||||
|
\set stanza = "1."
|
||||||
|
Ihr Freun -- de Got -- tes all -- zu -- gleich,
|
||||||
|
ver -- herr -- licht hoch im Him -- mel -- reich,
|
||||||
|
}
|
||||||
|
stropheI.II = \lyricmode {
|
||||||
|
er -- fleht am Thro -- ne al -- le zeit
|
||||||
|
uns Gna -- de und Barm -- her -- zig -- keit!
|
||||||
|
}
|
||||||
|
KV = \lyricmode {
|
||||||
|
Helft uns in die -- dem Er -- den -- tal,
|
||||||
|
dass wir durch Got -- tes Gnad und Wahl
|
||||||
|
zum Him -- mel kom -- men all -- zu -- mal!
|
||||||
|
}
|
||||||
|
stropheV.I = \lyricmode {
|
||||||
|
\set stanza = "5."
|
||||||
|
O Schar der Jung -- fraun, licht und rein,
|
||||||
|
die ihr ge -- weiht dme Herrn al -- lein,
|
||||||
|
}
|
||||||
|
stropheV.II = \lyricmode {
|
||||||
|
ihr heil-- gen Frau -- en tu -- gend -- reich,
|
||||||
|
ihr Freun -- de Got -- tes all -- zu -- gleich
|
||||||
|
}
|
||||||
|
stropheVI.I = \lyricmode {
|
||||||
|
\set stanza = "6."
|
||||||
|
Wir bit -- ten euch durch Chris -- ti Blut,
|
||||||
|
die ihr nun weilt beim höch -- sten Gut,
|
||||||
|
}
|
||||||
|
stropheVI.II = \lyricmode {
|
||||||
|
tragt vor die Not der Chris -- ten -- heit
|
||||||
|
der hei -- lig -- sten Drei -- fal -- tig -- keit!
|
||||||
|
}
|
||||||
|
|
||||||
|
\score{
|
||||||
|
<<
|
||||||
|
\new Staff {
|
||||||
|
\new Voice = "St" {\melody.St}
|
||||||
|
\new Voice = "KV" {\melody.KV}
|
||||||
|
}
|
||||||
|
\new Lyrics <<
|
||||||
|
\lyricsto "St" {\stropheI.I}
|
||||||
|
\lyricsto "KV" {\KV}
|
||||||
|
>>
|
||||||
|
\new Lyrics \lyricsto "St" {\stropheI.II}
|
||||||
|
\new Lyrics \lyricsto "St" {\stropheV.I}
|
||||||
|
\new Lyrics \lyricsto "St" {\stropheV.II}
|
||||||
|
\new Lyrics \lyricsto "St" {\stropheVI.I}
|
||||||
|
\new Lyrics \lyricsto "St" {\stropheVI.II}
|
||||||
|
>>
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
[%
|
||||||
|
scores = {
|
||||||
|
gregorian = 'gregorio_scores/kyrie/kyrie_xvi.gabc'
|
||||||
|
};
|
||||||
|
credits.TM = 'Vat. XVI';
|
||||||
|
-%]
|
||||||
|
[%# Accompanyment available. Arragngement Berthold Hummel%]
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "kyrie_xvi_vars.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
\FullScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
\include "kyrie_xvi_vars.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
\VocalScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "kyrie_xvi_vars.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
\VocalScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "gregorian.ly"
|
||||||
|
|
||||||
|
chant.meta = {
|
||||||
|
\key f \major
|
||||||
|
\repeat volta 2 {s4*9}
|
||||||
|
\repeat volta 2 {s4*7}
|
||||||
|
\repeat volta 2 {s4*10} \finalis
|
||||||
|
}
|
||||||
|
chant.cantus = \fixed c' {
|
||||||
|
\repeat volta 2 { f4 g( a) \melisma a4 \melismaEnd a f g a a }
|
||||||
|
\repeat volta 2 {c' a (b) g g a a}
|
||||||
|
\repeat volta 2 {f4 g( a) \melisma a4 \melismaEnd a f g a a s}
|
||||||
|
}
|
||||||
|
chant.A = \relative c' {
|
||||||
|
\repeat volta 2 {d2 s4 e2 s4 d2 e4}
|
||||||
|
\repeat volta 2 {e2 s d2 e4}
|
||||||
|
\repeat volta 2 {d2 s4 e2 s4 d2 e4 s}
|
||||||
|
}
|
||||||
|
chant.T = \relative {
|
||||||
|
\repeat volta 2 {a2( s4 a2) s4 b2 c4}
|
||||||
|
\repeat volta 2 {c2 s d c4}
|
||||||
|
\repeat volta 2 {a2( s4 a2) s4 b2 c4 s}
|
||||||
|
}
|
||||||
|
chant.B = \relative {
|
||||||
|
\repeat volta 2 {d2 s4 c2 s4 b2 a4}
|
||||||
|
\repeat volta 2 {a2 s b2 a4}
|
||||||
|
\repeat volta 2 {d2 s4 c2 s4 b2 a4 s}
|
||||||
|
}
|
||||||
|
chant.verba = \lyricmode {
|
||||||
|
\set stanza = "V/A"
|
||||||
|
Ky -- ri -- e e -- le -- i son.
|
||||||
|
\set stanza = "V/A"
|
||||||
|
Chri -- ste e -- le -- i -- son.
|
||||||
|
\set stanza = "V"
|
||||||
|
Ky -- ri -- e e -- le -- i son.
|
||||||
|
\set stanza = "A"
|
||||||
|
Ky -- ri -- e e -- le -- i son.
|
||||||
|
}
|
||||||
|
|
||||||
|
VocalScore =
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice = "melody" <<\chant.meta \chant.cantus>>
|
||||||
|
\new GregorianTranscriptionLyrics \lyricsto melody {\chant.verba}
|
||||||
|
>>
|
||||||
|
FullScore = <<
|
||||||
|
\new StaffGroup <<
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice = "melody" <<\voiceOne \chant.meta \chant.cantus>>
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceTwo \chant.meta \chant.A>>
|
||||||
|
>>
|
||||||
|
\new GregorianTranscriptionLyrics \lyricsto melody {\chant.verba}
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\clef bass
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceOne \chant.meta \chant.T>>
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceTwo \chant.meta \chant.B>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
\song{[% purpose %]}{}{%
|
||||||
|
[% IF parts == 'choir' -%]
|
||||||
|
\lilypondfile{library/freie_lieder/kyrie_xvi_de/kyrie_xvi_de_schola.ly}%
|
||||||
|
[% ELSIF parts != 0 -%]
|
||||||
|
\lilypondfile{library/freie_lieder/kyrie_xvi_de/kyrie_xvi_de_full.ly}%
|
||||||
|
[% ELSE -%]
|
||||||
|
\lilypondfile{library/freie_lieder/kyrie_xvi_de/kyrie_xvi_de_lz.ly}%
|
||||||
|
[% END -%]
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "kyrie_xvi_de_vars.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
\FullScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
\include "kyrie_xvi_de_vars.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
\VocalScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "kyrie_xvi_de_vars.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
\VocalScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "gregorian.ly"
|
||||||
|
|
||||||
|
chant.meta = {
|
||||||
|
\key f \major
|
||||||
|
\repeat volta 2 {s4*6}
|
||||||
|
\repeat volta 2 {s4*7}
|
||||||
|
s4*6 \finalis
|
||||||
|
s4*8 \finalis
|
||||||
|
}
|
||||||
|
chant.cantus = \fixed c' {
|
||||||
|
\repeat volta 2 { \melisma a4 \melismaEnd a f g a a }
|
||||||
|
\repeat volta 2 {c' a (b) g g a a}
|
||||||
|
\melisma a \melismaEnd a f g a a
|
||||||
|
\melisma a \melismaEnd a f g (f) e d
|
||||||
|
}
|
||||||
|
chant.A = \relative c' {
|
||||||
|
\repeat volta 2 {f2 s4 d2 e4}
|
||||||
|
\repeat volta 2 {e2 s d2 e4}
|
||||||
|
f2 s4 d2 e4
|
||||||
|
f2 s4 d2 c4 a
|
||||||
|
}
|
||||||
|
chant.T = \relative {
|
||||||
|
\repeat volta 2 {a2 s4 b2 c4}
|
||||||
|
\repeat volta 2 {c2 s d c4}
|
||||||
|
a2 s4 b2 c4
|
||||||
|
a2 s4 b2 g4 f
|
||||||
|
}
|
||||||
|
chant.B = \relative {
|
||||||
|
\repeat volta 2 {d2 s4 b2 a4}
|
||||||
|
\repeat volta 2 {a2 s b2 a4}
|
||||||
|
d2 s4 b2 a4
|
||||||
|
d2 s4 b2 c4 d
|
||||||
|
}
|
||||||
|
chant.verba = \lyricmode {
|
||||||
|
\set stanza = "V/A"
|
||||||
|
Herr, er -- bar -- me Dich.
|
||||||
|
\set stanza = "V/A"
|
||||||
|
Chri -- stus, er -- bar -- me Dich.
|
||||||
|
\set stanza = "V"
|
||||||
|
Herr, er -- bar -- me Dich.
|
||||||
|
\set stanza = "A"
|
||||||
|
Herr, er -- bar -- me Dich.
|
||||||
|
}
|
||||||
|
|
||||||
|
VocalScore =
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice = "melody" <<\chant.meta \chant.cantus>>
|
||||||
|
\new GregorianTranscriptionLyrics \lyricsto melody {\chant.verba}
|
||||||
|
>>
|
||||||
|
FullScore = <<
|
||||||
|
\new StaffGroup <<
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice = "melody" <<\voiceOne \chant.meta \chant.cantus>>
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceTwo \chant.meta \chant.A>>
|
||||||
|
>>
|
||||||
|
\new GregorianTranscriptionLyrics \lyricsto melody {\chant.verba}
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\clef bass
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceOne \chant.meta \chant.T>>
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceTwo \chant.meta \chant.B>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
[%
|
||||||
|
title = 'Maria durch ein Dornwald ging';
|
||||||
|
scores = {
|
||||||
|
band = 'freie_lieder/maria_durch_ein_dornwald_ging/maria_durch_ein_dornwald_ging_leadsheet.ly'
|
||||||
|
SATB = 'freie_lieder/maria_durch_ein_dornwald_ging/maria_durch_ein_dornwald_ging_SATB.ly'
|
||||||
|
congregation = 'freie_lieder/maria_durch_ein_dornwald_ging/maria_durch_ein_dornwald_ging_lz.ly'
|
||||||
|
};
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "maria_durch_ein_dornwald_ging_vars.ly"
|
||||||
|
|
||||||
|
\score{
|
||||||
|
\SATBScore
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "maria_durch_ein_dornwald_ging_vars.ly"
|
||||||
|
|
||||||
|
\score{
|
||||||
|
\Leadsheet
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
\include "maria_durch_ein_dornwald_ging_vars.ly"
|
||||||
|
|
||||||
|
\score{
|
||||||
|
\MelodyScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,95 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
\key e \minor
|
||||||
|
\time 4/4
|
||||||
|
\partial 4
|
||||||
|
s4 | s1*8 | \breathe s1| s2. \bar "|."
|
||||||
|
}
|
||||||
|
|
||||||
|
melody = \relative {
|
||||||
|
\phrasingSlurDashed
|
||||||
|
h4 | e \(8\) fis g4 h | g fis8 \(e\)
|
||||||
|
fis4 \(fis\) | g4 8 8 a2 | h r4 g8 \(a\)
|
||||||
|
h4. a8 h4 c8 \(h\) | a4. g8 a4 h8 \(a\)
|
||||||
|
g4 \(8\) fis g \(g\) a \(g\) | fis4 \(8\) e
|
||||||
|
fis4 fis
|
||||||
|
| e4. fis8 g4 h | g8 (fis) e2
|
||||||
|
}
|
||||||
|
stropheEins = \lyricmode {
|
||||||
|
\set stanza = "1."
|
||||||
|
\markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- _ -- \markup{\smallCaps a} durch ein Dorn -- wald _ ging. _
|
||||||
|
Ky -- rie e -- lei -- son.
|
||||||
|
\markup{\smallCaps Ma} -- _ -- \markup{\smallCaps ri} -- \markup{\smallCaps a} durch ein _ Dorn -- wald
|
||||||
|
ging, der _ hat _ in sie -- ben Jahrn kein Laub _ ge -- tra -- gen.
|
||||||
|
\markup{\smallCaps Je} -- \markup{\smallCaps sus} und \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- \markup{\smallCaps a}
|
||||||
|
}
|
||||||
|
stropheZwei = \lyricmode {
|
||||||
|
\set stanza = "2."
|
||||||
|
Was trug _ \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- \markup{\smallCaps a} unter ih -- rem Her -- zen?
|
||||||
|
Ky -- rie e -- lei -- son.
|
||||||
|
Ein _ klei -- nes Kind -- lein _ oh -- ne Schmer -- zen, das trug _
|
||||||
|
\markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- \markup{\smallCaps a} un -- ter ih -- _ -- rem Her -- zen.
|
||||||
|
\markup{\smallCaps Je} -- \markup{\smallCaps sus} und \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- \markup{\smallCaps a.}
|
||||||
|
}
|
||||||
|
stropheDrei = \lyricmode {
|
||||||
|
\set stanza = "3."
|
||||||
|
Da ha -- ben die Dor -- nen Ro -- sen ge -- tra -- gen.
|
||||||
|
Ky -- rie e -- lei -- son.
|
||||||
|
Als das Kind -- lein durch den _ Wald ge -- tra -- gen, da
|
||||||
|
ha -- ben die Dor -- _ -- nen _ Ro -- sen ge -- tra -- gen
|
||||||
|
\markup{\smallCaps Je} -- \markup{\smallCaps sus} und \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- \markup{\smallCaps a.}
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.chords = \chordmode {
|
||||||
|
s4 | d1:m | s2. a4 | d2:m c | f1
|
||||||
|
s | c | d:m | a |
|
||||||
|
d:m | a4 d2.:m
|
||||||
|
}
|
||||||
|
|
||||||
|
A = \relative c'{
|
||||||
|
h4 | 2 e | e dis | e4 e e d | d2 r4
|
||||||
|
e4 | 2 2 | e dis | e2 4 4 | cis2 e4 dis |
|
||||||
|
e4. dis8 e2 | dis4 h2
|
||||||
|
}
|
||||||
|
T = \relative c' {
|
||||||
|
h4 | g4. a8 h2 | c h | h4 h a fis | g2 r4
|
||||||
|
h4 | g4. fis8 g4 a8 g | fis4. e8 fis4 h | g4. a8 h4 a | a2 h2
|
||||||
|
h h | a4 g2}
|
||||||
|
B = \relative {
|
||||||
|
h,4 e,4. dis8 e4 g | a2 h | e4 d c d | g2 r4
|
||||||
|
e4 | 2 e | c h | c c | a4 fis h a | g4. fis8 e4 g | h e2}
|
||||||
|
|
||||||
|
MelodyScore = \new Staff <<
|
||||||
|
\new Voice = "melody" <<\meta \melody>>
|
||||||
|
\new Lyrics \lyricsto melody \stropheEins
|
||||||
|
\new Lyrics \lyricsto melody \stropheZwei
|
||||||
|
\new Lyrics \lyricsto melody \stropheDrei
|
||||||
|
>>
|
||||||
|
|
||||||
|
Leadsheet = <<
|
||||||
|
\new ChordNames {\Song.chords}
|
||||||
|
\transpose e d \MelodyScore
|
||||||
|
>>
|
||||||
|
|
||||||
|
SATBScore = \new ChoirStaff <<
|
||||||
|
\new Staff \with {
|
||||||
|
\consists Merge_rests_engraver
|
||||||
|
} <<
|
||||||
|
\meta
|
||||||
|
\new Voice = "melody" <<\voiceOne \melody>>
|
||||||
|
\new Voice <<\voiceTwo \A>>
|
||||||
|
>>
|
||||||
|
\new Lyrics \lyricsto melody \stropheEins
|
||||||
|
\new Lyrics \lyricsto melody \stropheZwei
|
||||||
|
\new Lyrics \lyricsto melody \stropheDrei
|
||||||
|
\new Staff \with {
|
||||||
|
\consists Merge_rests_engraver
|
||||||
|
} <<
|
||||||
|
\clef bass
|
||||||
|
\meta
|
||||||
|
\new Voice <<\voiceOne \T>>
|
||||||
|
\new Voice <<\voiceTwo \B>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
\version "2.22.2"
|
||||||
|
\language deutsch
|
||||||
|
%\header {
|
||||||
|
% title = "Maria durch ein' Dornwald ging Vorspiel"
|
||||||
|
% tagline = "Andreas Nolda"
|
||||||
|
%}
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
global = {
|
||||||
|
\key g \minor
|
||||||
|
\time 4/4
|
||||||
|
\partial 4
|
||||||
|
s4 s1*9 s2.
|
||||||
|
\bar "|."
|
||||||
|
}
|
||||||
|
upperOne = \transpose f g {\transpose h c' {\relative{
|
||||||
|
h4 | e4. fis8 g4 h | g fis8 e
|
||||||
|
fis2 | g4 8 8 a2 | h2. g8 a
|
||||||
|
h4. a8 h4 c8 h | a4. g8 a4 h8 a
|
||||||
|
g4. fis8 g4 a8 g | fis4. e8
|
||||||
|
fis4 fis | e4. fis8 g4 h | g8 fis e4 r4 \bar "|."
|
||||||
|
}}}
|
||||||
|
upperTwo = \transpose f g {\relative c{
|
||||||
|
r4 | r2. f4 | c'4. d8 e2 | f2. g8 f | e4. d8 c2 |
|
||||||
|
f4 g as b, | es f g as, | des es f g, | c d e b | as c f8 e f4 | e f r4
|
||||||
|
}}
|
||||||
|
lowerMan = \transpose f g{\relative a,{
|
||||||
|
r4 | r1 | r2. c4 | f4. es8 des2 | c2. r4 | r1*3
|
||||||
|
r2. c4 | f4. es8 des4 as8 b | c4 f r4
|
||||||
|
}}
|
||||||
|
|
||||||
|
\score{
|
||||||
|
\transpose g e {
|
||||||
|
\new PianoStaff <<
|
||||||
|
\new Staff = upper \with {
|
||||||
|
\consists Merge_rests_engraver
|
||||||
|
} <<
|
||||||
|
\clef "treble"
|
||||||
|
\new Voice = "main" <<\global {\voiceOne \upperOne} >>
|
||||||
|
\new Voice <<\global {\voiceTwo \upperTwo} >>
|
||||||
|
>>
|
||||||
|
\new Staff = lower <<
|
||||||
|
\clef "bass"
|
||||||
|
\new Voice <<\global \lowerMan >>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
|
}
|
||||||
|
\layout {}
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
[%
|
||||||
|
song_title = "O Haupt voll Blut und Wunden";
|
||||||
|
scores = {
|
||||||
|
congregation = "freie_lieder/o_haupt_voll_blut_und_wunden/o_haupt_voll_blut_und_wunden_lz.ly"
|
||||||
|
leadsheet = "freie_lieder/o_haupt_voll_blut_und_wunden/o_haupt_voll_blut_und_wunden_leadsheet.ly"
|
||||||
|
};
|
||||||
|
credits = {
|
||||||
|
lyrics = "Paul Gerhardt 1656 nach ``Salve, caput cruentatum'' des Arnulf von Löwn vor 1250"
|
||||||
|
melody = 'Hans Leo Haßler 1601/Brieg nach 1601'
|
||||||
|
}
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "o_haupt_voll_blut_und_wunden_vars.ly"
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
|
||||||
|
\score{
|
||||||
|
<<
|
||||||
|
\new ChordNames {
|
||||||
|
\Song.Chords
|
||||||
|
}
|
||||||
|
\Song.MelodyScore
|
||||||
|
>>
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "o_haupt_voll_blut_und_wunden_vars.ly"
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
|
||||||
|
\score{
|
||||||
|
\Song.MelodyScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
melody = \fixed c' {
|
||||||
|
\key a \minor
|
||||||
|
\time 2/2
|
||||||
|
\partial 2
|
||||||
|
\repeat unfold 2 {
|
||||||
|
e2 | a4 g f e | d2 e4 \breathe
|
||||||
|
h | c' c' h h | a2 \breathe }
|
||||||
|
r4 c' | h g a h | c'2 4 \breathe
|
||||||
|
g | a g a f | e2 \breathe
|
||||||
|
c' | h4 d' c' h | a2 h4 \breathe
|
||||||
|
e | f e d d | e2 \bar "|."
|
||||||
|
}
|
||||||
|
|
||||||
|
strophe.I = \lyricmode {
|
||||||
|
\set stanza = "1."
|
||||||
|
O Haupt voll Blut und Wun -- den, voll Schmerz und vol -- ler Hohn.
|
||||||
|
o Haupt, zum Spott ge -- bun -- den mit ei -- ner Dor -- nen -- Kron,
|
||||||
|
o Haupt sonst schön ge -- krö -- net mit höch -- ster Ehr und Zier,
|
||||||
|
jetzt a -- ber frech ver -- höh -- net: ge -- grü -- ßet seist Du mir.
|
||||||
|
}
|
||||||
|
strophe.II = \lyricmode {
|
||||||
|
\set stanza = "2."
|
||||||
|
Du ed -- les An -- ge -- sich -- te, vor dem sonst al -- le Welt
|
||||||
|
er -- zit -- tert im Ge -- rich -- te, wi bist Du so ent -- stellt.
|
||||||
|
Wie bist Du so er -- blei -- chet, wer hat Dein Au -- gen -- licht,
|
||||||
|
dem sonst ein Licht nicht glei -- chet, so schänd -- lich zu -- ge -- richt't?
|
||||||
|
}
|
||||||
|
strophe.III = \lyricmode {
|
||||||
|
\set stanza = "3."
|
||||||
|
Die Far -- be Dei -- ner Wan -- gen, der ro -- ten Lip -- pen Pracht
|
||||||
|
ist hin und ganz ver -- gan -- gen; des blas -- sen To -- des Macht
|
||||||
|
hat al -- les hin -- ge -- nom -- men, hat al -- les hin -- ge -- rafft,
|
||||||
|
und so bist Du ge -- kom -- men von Dei -- nes Lei -- bes Kraft.
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.Chords = \chordmode {
|
||||||
|
\repeat unfold 2 {
|
||||||
|
s2 | a:m d:m g c
|
||||||
|
a:m e:4 a:m
|
||||||
|
}
|
||||||
|
s g d:m c1
|
||||||
|
f2 d:m7 e1
|
||||||
|
g2 a:m d:m7 e:m
|
||||||
|
d:m7 d:m e1
|
||||||
|
a2:m e:4 a:m
|
||||||
|
}
|
||||||
|
Song.MelodyScore = \new Staff <<
|
||||||
|
\new Voice = "melody" \melody
|
||||||
|
\new Lyrics \lyricsto melody {\strophe.I}
|
||||||
|
\new Lyrics \lyricsto melody {\strophe.II}
|
||||||
|
\new Lyrics \lyricsto melody {\strophe.III}
|
||||||
|
>>
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
[%
|
||||||
|
song_title = "O Heiland, reiß die Himmel auf";
|
||||||
|
scores = {
|
||||||
|
congregation = "freie_lieder/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf_lz.ly"
|
||||||
|
SATB = "freie_lieder/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf_SATB.ly"
|
||||||
|
};
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
\song{[% purpose %]}{O Heiland reiß die Himmel auf}{%
|
||||||
|
[% IF parts != 0 -%]
|
||||||
|
\lilypondfile{library/freie_lieder/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf_SATB.ly}%
|
||||||
|
[% ELSE -%]
|
||||||
|
\lilypondfile{library/freie_lieder/o_heiland_reiss_die_himmel_auf/o_heiland_reiss_die_himmel_auf_lz.ly}%
|
||||||
|
[% END -%]
|
||||||
|
}
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
% GL 218
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "o_heiland_reiss_die_himmel_auf_vars.ly"
|
||||||
|
|
||||||
|
\score{
|
||||||
|
\Song.SATBScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
% GL 218
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
\include "o_heiland_reiss_die_himmel_auf_vars.ly"
|
||||||
|
|
||||||
|
\score{
|
||||||
|
\Song.MelodyScore
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,81 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
% GL 218
|
||||||
|
% S: Choralbuch zum Evangelischen Kirchengesangbuchy, Ausgabe Wurttemberg
|
||||||
|
|
||||||
|
Song.meta = {
|
||||||
|
\key a \minor
|
||||||
|
\time 6/4
|
||||||
|
\partial 1
|
||||||
|
s4 s2. s1. s2. \breathe
|
||||||
|
s2. s1. s2. \breathe
|
||||||
|
s2. s1. s2. \breathe
|
||||||
|
s2. s1. s2 \bar "|."
|
||||||
|
}
|
||||||
|
Song.S = \relative c' {
|
||||||
|
d4 f2 g4 | a2 d,4 f e2 | d2.
|
||||||
|
a'4 a h | c2 f,4 a g2 | f2.
|
||||||
|
c'4 c c | 2 a4 d2 4 | c2.
|
||||||
|
a4 a g | a2 f4 g e2 | d
|
||||||
|
}
|
||||||
|
Song.stropheEins = \lyricmode {
|
||||||
|
\set stanza = "1."
|
||||||
|
O Hei -- land reiß die Him -- mel auf,
|
||||||
|
he -- rab he -- rab vom Him -- mel lauf.
|
||||||
|
Reiß ab vom Him -- mel Tor und Tür,
|
||||||
|
reiß ab, wo Schloss und Rie -- gel für.
|
||||||
|
}
|
||||||
|
Song.stropheZwei = \lyricmode {
|
||||||
|
\set stanza = "2."
|
||||||
|
O Gott, ein Tau von Him -- mel gieß,
|
||||||
|
im Tau he -- rab, o Hei -- land, fließ.
|
||||||
|
Ihr Wol -- ken brecht und reg -- net aus
|
||||||
|
den Kö -- nig ü -- ber Ja -- kobs Haus.
|
||||||
|
}
|
||||||
|
Song.stropheDrei = \lyricmode {
|
||||||
|
\set stanza = "3."
|
||||||
|
O Erd, schlag aus, schlag aus, o Erd,
|
||||||
|
dass Berg und Tal, grün al -- les werd.
|
||||||
|
O Erd, her -- für dies Blüm -- lein bring,
|
||||||
|
o Hei -- land, aus der Er -- den spring.
|
||||||
|
}
|
||||||
|
Song.A = \fixed c' {
|
||||||
|
d4 d2 e4 | f2 d4 d~ d cis | d2.
|
||||||
|
d4 c d | e2 a,4 c2. | c
|
||||||
|
f4 g f | e2 c4 f2 g4 | e2.
|
||||||
|
4 f e | c2 4 d c h, | a,2
|
||||||
|
}
|
||||||
|
Song.T = \relative {
|
||||||
|
f4 a2 c4 | c2 b4 a4 2 | 2.
|
||||||
|
f4 a f | g2 f4 f~ f e | a2.
|
||||||
|
4 c a | g2 a4 a c h | c2.
|
||||||
|
4 d h | a2 4 d, a'2 | f
|
||||||
|
}
|
||||||
|
Song.B = \relative {
|
||||||
|
d,4 d'2 c4 | f,2 g4 d' a2 | d2.
|
||||||
|
4 f d | c2 d4 a c2 | f,2.
|
||||||
|
f'4 e f | c2 f4 d2 g4 | a2.
|
||||||
|
4 d, e | f2 a,4 h c2 | d
|
||||||
|
}
|
||||||
|
|
||||||
|
Song.MelodyScore = \new Staff <<
|
||||||
|
\new Voice = "melody" <<\Song.meta \Song.S>>
|
||||||
|
\new Lyrics \lyricsto melody {\Song.stropheEins}
|
||||||
|
\new Lyrics \lyricsto melody {\Song.stropheZwei}
|
||||||
|
\new Lyrics \lyricsto melody {\Song.stropheDrei}
|
||||||
|
>>
|
||||||
|
|
||||||
|
Song.SATBScore = \new ChoirStaff <<
|
||||||
|
\new Staff <<
|
||||||
|
\new Voice = "melody" <<\voiceOne \Song.meta \Song.S>>
|
||||||
|
\new Voice <<\voiceTwo \Song.meta \Song.A>>
|
||||||
|
>>
|
||||||
|
\new Lyrics \lyricsto melody {\Song.stropheEins}
|
||||||
|
\new Lyrics \lyricsto melody {\Song.stropheZwei}
|
||||||
|
\new Lyrics \lyricsto melody {\Song.stropheDrei}
|
||||||
|
\new Staff <<
|
||||||
|
\clef bass
|
||||||
|
\new Voice <<\voiceOne \Song.meta \Song.T>>
|
||||||
|
\new Voice <<\voiceTwo \Song.meta \Song.B>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
[%
|
||||||
|
parts = {
|
||||||
|
schola = "freie_lieder/co_preise_zunge_und_verkuende/preise_zunge_und_verkuende_full.ly"
|
||||||
|
};
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "preise_zunge_und_verkuende_vars.ly"
|
||||||
|
\include "gregorian.ly"
|
||||||
|
|
||||||
|
\score { \VocalScore }
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
\include "preise_zunge_und_verkuende_vars.ly"
|
||||||
|
\include "gregorian.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
\VocalScore
|
||||||
|
}
|
||||||
@@ -0,0 +1,150 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "gregorian.ly"
|
||||||
|
% Ps 145 (144) 8
|
||||||
|
% 3. Modus
|
||||||
|
chant.meta = {
|
||||||
|
\key c \major
|
||||||
|
\set Score.timing = ##f
|
||||||
|
}
|
||||||
|
chant.cantus.II = \fixed c' {
|
||||||
|
a a(c' h) g g(e) f d(c) d(e) e(f e) \divisioMinima
|
||||||
|
d d(a) a(g) e(d) f e(d) d \divisioMaxima
|
||||||
|
}
|
||||||
|
chant.cantus.I = \fixed c' {
|
||||||
|
d4 e g(a) a(g) a c' c'(h) a(g) \divisioMinima
|
||||||
|
c' d' e'(f') a(g) c' h(a) a \divisioMaxima
|
||||||
|
\chant.cantus.II
|
||||||
|
}
|
||||||
|
chant.cantus.complete = {
|
||||||
|
\chant.cantus.I
|
||||||
|
\chant.cantus.II \finalis
|
||||||
|
}
|
||||||
|
|
||||||
|
verba.I = \lyricmode {
|
||||||
|
\set stanza = "1."
|
||||||
|
Prei -- se Zun -- ge und ver -- kün -- de
|
||||||
|
den er -- hab' -- nen Waf -- fen -- gang;
|
||||||
|
auf das Kreuz, das Sie -- ges -- zei -- chen,
|
||||||
|
sin -- ge den Tri -- umph -- ge -- sang.
|
||||||
|
Sin -- ge, wie der Welt Er -- lö -- ser
|
||||||
|
starb und den -- noch Sieg er -- rang.
|
||||||
|
}
|
||||||
|
verba.II = \lyricmode {
|
||||||
|
\set stanza = "2."
|
||||||
|
Denn ver -- blen -- det aß sich A -- dam
|
||||||
|
einst vom Bau -- me das Ge -- richt;
|
||||||
|
doch der Schöp -- fer voll Er -- bar -- men
|
||||||
|
woll -- te sei Ver -- der -- ben nicht
|
||||||
|
und hat selbst den Baum er -- ko -- ren,
|
||||||
|
der den Fluch des Bau -- mes bricht.
|
||||||
|
}
|
||||||
|
verba.III = \lyricmode {
|
||||||
|
\set stanza = "3."
|
||||||
|
Got -- tes Plan, uns zu er -- lö -- sen,
|
||||||
|
hat ver -- langt die Op -- fer -- tat,
|
||||||
|
und des Va -- ters ew' -- ge Weis -- heit
|
||||||
|
macht' zu -- schan -- den den Ver -- rat
|
||||||
|
und ver -- lieh barm -- her -- zig Hei -- lung,
|
||||||
|
wo der Feind ver -- wun -- det hat.
|
||||||
|
}
|
||||||
|
verba.IV = \lyricmode {
|
||||||
|
\set stanza = "4."
|
||||||
|
So ward in der Zei -- ten Fül -- le
|
||||||
|
uns ge -- sandt des Va -- ters Sohn,
|
||||||
|
er, der Schöp -- fer al -- ler Wel -- ten,
|
||||||
|
stieg he -- rab vom Him -- mels -- thron
|
||||||
|
und ward Fleisch und ward ge -- bo -- ren
|
||||||
|
und ward ei -- ner Jung -- frau Sohn.
|
||||||
|
}
|
||||||
|
verba.V = \lyricmode {
|
||||||
|
\set stanza = "5."
|
||||||
|
Als nach drei -- ßig Er -- den -- jah -- ren
|
||||||
|
für den Herrn die Stun -- de kam,
|
||||||
|
dass er uns' -- res Hei -- les we -- gen
|
||||||
|
Tod und Lei -- den auf sich nahm,
|
||||||
|
wur -- de er er -- höht am Kreu -- ze,
|
||||||
|
dar -- ge -- bracht als Got -- tes -- lamm.
|
||||||
|
}
|
||||||
|
verba.VI = \lyricmode {
|
||||||
|
\set stanza = "6."
|
||||||
|
Seht den Es -- sig, seht die Gal -- le.
|
||||||
|
Dor -- nen, Nä -- gel, Speer voll Wut
|
||||||
|
sei -- nen zar -- ten Leib durch -- boh -- ren,
|
||||||
|
Was -- ser strömt her -- vor und Blut;
|
||||||
|
Er -- de, Mee -- re, Ster -- ne, Wel -- ten
|
||||||
|
wer -- den rein durch sol -- che Flut.
|
||||||
|
}
|
||||||
|
verba.VII.I = \lyricmode {
|
||||||
|
Hei -- lig Kreuz, du Baum der Treu -- e,
|
||||||
|
ed -- ler Baum, dem kei -- ner gleich,
|
||||||
|
kei -- ner so an Laub und Blü -- te,
|
||||||
|
kei -- ner so an Früch -- ten reich:
|
||||||
|
}
|
||||||
|
verba.VII.II = \lyricmode {
|
||||||
|
Sü -- ßes Holz, o sü -- ße Nä -- gel,
|
||||||
|
wel -- che sü -- ße Last an euch.
|
||||||
|
}
|
||||||
|
verba.VII.complete = \lyricmode {
|
||||||
|
% \set stanza = "7."
|
||||||
|
\verba.VII.I
|
||||||
|
\verba.VII.II
|
||||||
|
}
|
||||||
|
verba.VIII = \lyricmode {
|
||||||
|
\set stanza = "8."
|
||||||
|
Beu -- ge, ho -- her Baum, die Zwei -- ge,
|
||||||
|
wer -- de weich an Stamm und Ast,
|
||||||
|
denn dein har -- tes Holz muss tra -- gen
|
||||||
|
ei -- ne kö -- nig -- li -- che Last,
|
||||||
|
gibt den Glie -- dern dei -- nes Schöp -- fers
|
||||||
|
an dem Stam -- me lin -- de Rast.
|
||||||
|
}
|
||||||
|
verba.IX = \lyricmode {
|
||||||
|
\set stanza = "9."
|
||||||
|
Du al -- lein warst wert, zu tra -- gen
|
||||||
|
al -- ler Sün -- den Lö -- se -- geld,
|
||||||
|
du, die Plan -- ke, die uns ret -- tet
|
||||||
|
aus dem Schiff -- bruch die -- ser Welt.
|
||||||
|
Du, ge -- salbt vom Blut des Lam -- mes,
|
||||||
|
Pfos -- ten, der den Tod ab -- hält.
|
||||||
|
}
|
||||||
|
verba.X = \lyricmode {
|
||||||
|
\set stanza = "10."
|
||||||
|
Lob und Ruhm sei oh -- ne En -- de
|
||||||
|
Gott, dem höch -- sten Herrn, ge -- weiht.
|
||||||
|
Preis dem Va -- ter und dem Soh -- ne
|
||||||
|
und dem Geist der Hei -- lig -- keit.
|
||||||
|
Ei -- nen Gott in drei Per -- so -- nen
|
||||||
|
lo -- be al -- le Welt und Zeit.
|
||||||
|
}
|
||||||
|
|
||||||
|
VocalScore = <<
|
||||||
|
\new GregorianTranscriptionStaff {
|
||||||
|
\new GregorianTranscriptionVoice = "chorus" {\chant.meta \chant.cantus.complete}
|
||||||
|
\new GregorianTranscriptionVoice = "I" {\chant.meta \chant.cantus.complete}
|
||||||
|
\new GregorianTranscriptionVoice = "chorus_short" {\chant.meta \chant.cantus.II \finalis}
|
||||||
|
\new GregorianTranscriptionVoice = "II" {\chant.meta \chant.cantus.complete}
|
||||||
|
}
|
||||||
|
\new GregorianTranscriptionLyrics <<
|
||||||
|
\lyricsto chorus {\verba.VII.complete}
|
||||||
|
\lyricsto I {\verba.I}
|
||||||
|
\lyricsto chorus_short {\verba.VII.II}
|
||||||
|
\lyricsto II {\verba.II}
|
||||||
|
>>
|
||||||
|
\new GregorianTranscriptionLyrics <<
|
||||||
|
\lyricsto I {\verba.III}
|
||||||
|
\lyricsto II {\verba.IV}
|
||||||
|
>>
|
||||||
|
\new GregorianTranscriptionLyrics <<
|
||||||
|
\lyricsto I {\verba.V}
|
||||||
|
\lyricsto II {\verba.VI}
|
||||||
|
>>
|
||||||
|
\new GregorianTranscriptionLyrics <<
|
||||||
|
\lyricsto I {\verba.VIII}
|
||||||
|
\lyricsto II {\verba.IX}
|
||||||
|
>>
|
||||||
|
\new GregorianTranscriptionLyrics <<
|
||||||
|
\lyricsto I {\verba.X}
|
||||||
|
>>
|
||||||
|
>>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
[%
|
||||||
|
song_title = "Raise a Hallelujah";
|
||||||
|
lyrics = "
|
||||||
|
\\St{1}{I raise a Hallelujah in the presence of my enemies
|
||||||
|
I raise a Hallelujah louder than the unbelief
|
||||||
|
I raise a Hallelujah, my weapon is a melody
|
||||||
|
I raise a Hallelujah, heaven comes to fight for me}
|
||||||
|
\\Chorus{I'm gonna sing in the middle of the storm
|
||||||
|
Louder and louder, you're gonna hear my praises roar
|
||||||
|
Up from the ashes, hope will arise
|
||||||
|
Death is defeated, the King is alive}
|
||||||
|
\\St{2}{I raise a Hallelujah with everything inside of me
|
||||||
|
I raise a Hallelujah I will watch the darkness flee
|
||||||
|
I raise a Hallelujah in the middle of the mystery
|
||||||
|
I raise a Hallelujah fear you lost your hold on me}
|
||||||
|
\\Bridge{Sing a little louder (Sing a little louder)}
|
||||||
|
\\Outro{I raise a Hallelujah I raise a Hallelujah}
|
||||||
|
";
|
||||||
|
credits.TM = "Jake Stevens, Jonathan David Helser, Melissa Helser, Molly Skaggs"
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
[%
|
||||||
|
scores = {
|
||||||
|
congregation = 'freie_lieder/resp_herr_auf_dich_vertraue_ich/resp_herr_auf_dich_vertraue_ich_lz.ly'
|
||||||
|
leadsheet = 'freie_lieder/resp_herr_auf_dich_vertraue_ich/resp_herr_auf_dich_vertraue_ich_full.ly'
|
||||||
|
};
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "resp_herr_auf_dich_vertraue_ich_vars.ly"
|
||||||
|
\include "gregorian.ly"
|
||||||
|
|
||||||
|
\score { \FullScore }
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
\include "resp_herr_auf_dich_vertraue_ich_vars.ly"
|
||||||
|
\include "gregorian.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
\VocalScore
|
||||||
|
}
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
\version "2.24.3"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "gregorian.ly"
|
||||||
|
chant.meta = {
|
||||||
|
\key c \major
|
||||||
|
\set Score.timing = ##f
|
||||||
|
}
|
||||||
|
chant.cantus.I = \relative c' {
|
||||||
|
f4 f g f g a a
|
||||||
|
}
|
||||||
|
chant.cantus.II = \relative c''{
|
||||||
|
g f g a g f d f g g f
|
||||||
|
}
|
||||||
|
chant.cantus.III = \relative c'' {
|
||||||
|
a a(b) a a a a a a a g(a) g \divisioMinima
|
||||||
|
g g g g f g( a) a
|
||||||
|
}
|
||||||
|
chant.cantus.V = \relative c'' {
|
||||||
|
a a a a a(b) a g g g(a) g \divisioMinima
|
||||||
|
g g g g f g( a) a
|
||||||
|
}
|
||||||
|
verba.I = \lyricmode {
|
||||||
|
Herr auf Dich ver -- trau -- e ich
|
||||||
|
}
|
||||||
|
verba.II = \lyricmode {
|
||||||
|
in Dei -- ne Hän -- de le -- ge ich mein Le -- ben
|
||||||
|
}
|
||||||
|
verba.III = \lyricmode {
|
||||||
|
Lass leuch -- ten ü -- ber Dei -- nem Knecht Dein Ant -- litz,
|
||||||
|
hilf mir in Dei -- ner Gü -- te
|
||||||
|
}
|
||||||
|
verba.IV = \lyricmode {
|
||||||
|
Eh -- re sei dem Va -- ter, und dem Soh -- ne und dem Hei -- li -- gen Geis -- te.
|
||||||
|
}
|
||||||
|
|
||||||
|
VocalScore = <<\new GregorianTranscriptionStaff <<
|
||||||
|
\chant.meta
|
||||||
|
{
|
||||||
|
\new GregorianTranscriptionVoice = "melodyI" {\chant.cantus.I}
|
||||||
|
\divisioMaior
|
||||||
|
\new GregorianTranscriptionVoice = "melodyII" {\chant.cantus.II}
|
||||||
|
\finalis
|
||||||
|
\new GregorianTranscriptionVoice = "melodyIII" {\chant.cantus.III}
|
||||||
|
\divisioMaior
|
||||||
|
\new GregorianTranscriptionVoice = "melodyIV" {\chant.cantus.II}
|
||||||
|
\finalis
|
||||||
|
\new GregorianTranscriptionVoice = "melodyV" {\chant.cantus.V}
|
||||||
|
\finalis
|
||||||
|
\new GregorianTranscriptionVoice = "melodyVI" {\chant.cantus.I}
|
||||||
|
\divisioMaior
|
||||||
|
\new GregorianTranscriptionVoice = "melodyVII" {\chant.cantus.II}
|
||||||
|
\finalis
|
||||||
|
}
|
||||||
|
>>
|
||||||
|
\new GregorianTranscriptionLyrics <<
|
||||||
|
\lyricsto melodyI {\set stanza = "V/A" \verba.I}
|
||||||
|
\lyricsto melodyII {\verba.II}
|
||||||
|
\lyricsto melodyIII {\set stanza = "V" \verba.III}
|
||||||
|
\lyricsto melodyIV {\set stanza = "A" \verba.II}
|
||||||
|
\lyricsto melodyV {\set stanza = "V" \verba.IV}
|
||||||
|
\lyricsto melodyVI {\set stanza = "A" \verba.I}
|
||||||
|
\lyricsto melodyVII {\verba.II}
|
||||||
|
>>
|
||||||
|
>>
|
||||||
|
FullScore = <<
|
||||||
|
{\VocalScore}
|
||||||
|
>>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
[%
|
||||||
|
song_title = "Rorate Cæli";
|
||||||
|
scores = {
|
||||||
|
band = "freie_lieder/rorate_modern/rorate_modern_full"
|
||||||
|
SATB = "freie_lieder/rorate_modern/rorate_modern_schola"
|
||||||
|
congregation = "freie_lieder/rorate_modern/rorate_modern_lz"
|
||||||
|
};
|
||||||
|
after_song = '\mytable{freie_lieder/rorate_modern/table.tex}'
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "rorate_modern_vars.ly"
|
||||||
|
\include "gregorian.ly"
|
||||||
|
|
||||||
|
\score { \AntFullScore }
|
||||||
|
\score { \vIFullScore }
|
||||||
|
\score { \vIIFullScore }
|
||||||
|
\score { \vIIIFullScore }
|
||||||
|
\score { \vIVFullScore }
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
\include "rorate_modern_vars.ly"
|
||||||
|
\include "gregorian.ly"
|
||||||
|
|
||||||
|
\score {
|
||||||
|
\AntVocalScore
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "../../../lilypond_musician_score_paper.ly"
|
||||||
|
\include "rorate_modern_vars.ly"
|
||||||
|
\include "gregorian.ly"
|
||||||
|
|
||||||
|
\score { \AntVocalScore }
|
||||||
|
\score { \vIVocalScore }
|
||||||
|
\score { \vIIVocalScore }
|
||||||
|
\score { \vIIIVocalScore }
|
||||||
|
\score { \vIVVocalScore }
|
||||||
@@ -0,0 +1,385 @@
|
|||||||
|
\version "2.24.2"
|
||||||
|
\language deutsch
|
||||||
|
|
||||||
|
\include "gregorian.ly"
|
||||||
|
chant.meta = {
|
||||||
|
\key f \major
|
||||||
|
\set Score.timing = ##f
|
||||||
|
}
|
||||||
|
chant.ant.meta = {
|
||||||
|
{\chant.meta}
|
||||||
|
s4*12 \divisioMinima
|
||||||
|
s4*9 \divisioMaior
|
||||||
|
s4*11 \divisioMinima
|
||||||
|
s4*10 \finalis
|
||||||
|
}
|
||||||
|
chant.ant.cantus = \relative {
|
||||||
|
s4 f'4 g (a) a4 d c c (b) a a (g)
|
||||||
|
a4 b a g (f) e4 f (e) d4
|
||||||
|
f4 g (a) a4 d c c(b a) a (g)
|
||||||
|
a4 b a a g (f) e4 f (e) d4
|
||||||
|
}
|
||||||
|
chant.ant.S = \relative c' {
|
||||||
|
s4 f g(a) a b2 s4*3 g2
|
||||||
|
s4 f2 e s4 d2 s4
|
||||||
|
f4 g (a) a a2 a4( g f) f( e)
|
||||||
|
s4 f2 s4 e2 s4 d2 s4
|
||||||
|
}
|
||||||
|
chant.ant.A = \relative c' {
|
||||||
|
s4 d e s c d2 s4*3 c2
|
||||||
|
s4 d2 c s4 a2 s4
|
||||||
|
f'4 g (a) es d2 d2 s4 c2
|
||||||
|
s4 d2 s4 c2 s4 a2 s4
|
||||||
|
}
|
||||||
|
chant.ant.T = \relative {
|
||||||
|
s4 a g s f f2 s4*3 e2
|
||||||
|
s4 d2 g s4 f2 s4
|
||||||
|
f4 g (a) c a2 b2 s4 g2
|
||||||
|
s4 b2 s4 g2 s4 d2 s4
|
||||||
|
}
|
||||||
|
chant.ant.B = \relative {
|
||||||
|
d,2 c4 s f b2 s4*3 c2
|
||||||
|
s4 b2 c s4 d2 s4
|
||||||
|
f,4 g( a) g fis2 g a4 c2
|
||||||
|
s4 g2 s4 c2 s4 d2 s4
|
||||||
|
}
|
||||||
|
verba.ant = \lyricmode {
|
||||||
|
\set stanza = "V/A"
|
||||||
|
Ro -- rá -- te cæ -- li dé -- su -- per, et nu -- bes plu -- ant iu -- stum.
|
||||||
|
a -- pe -- ri -- á -- tur tér -- ra, et gér -- mi -- net Sal -- va -- tó -- rem.
|
||||||
|
}
|
||||||
|
|
||||||
|
chant.vI.meta = {
|
||||||
|
\chant.meta
|
||||||
|
s4*11 \divisioMinima
|
||||||
|
s4*9 \divisioMaxima
|
||||||
|
s4*4 \divisioMinima
|
||||||
|
s4*9 \divisioMaior
|
||||||
|
s4*11 \augmentum s4 \divisioMaxima
|
||||||
|
s4*8 \divisioMaior
|
||||||
|
s4*16 \finalis
|
||||||
|
}
|
||||||
|
chant.vI.cantus = \relative c' {
|
||||||
|
s4 f4 g a a( g) a a( b) a a
|
||||||
|
s4 a2 g4 b a a( g) f
|
||||||
|
a b c2
|
||||||
|
c c4( d) c c( b) a a
|
||||||
|
f g( a) a \augmentum a g( b) a a( g) f f
|
||||||
|
a2 a4 g c c( b) a
|
||||||
|
s f g( a) a a a( b) a a g( f) e f( e) d
|
||||||
|
}
|
||||||
|
chant.vI.S = \relative c' {
|
||||||
|
d2 s4*9
|
||||||
|
d2 s4*4 e2 f4
|
||||||
|
s2 e
|
||||||
|
s4*5 d2 s2
|
||||||
|
s4 c2 s4*4 \augmentum s4 d2 s2
|
||||||
|
d2 g s4 a2 s4
|
||||||
|
f2 s4*4 f2 s e s4 d2 s4
|
||||||
|
}
|
||||||
|
chant.vI.A = \relative c' {
|
||||||
|
a2 s4*9
|
||||||
|
g2( s4*4 g2) a4
|
||||||
|
s2 a
|
||||||
|
s4*5 a2 s2
|
||||||
|
s4 g2 s4*4 \augmentum s4 d'2 s2
|
||||||
|
a2 c s4 a2 s4
|
||||||
|
b2 s4*4 c2 s c s4 a2 s4
|
||||||
|
}
|
||||||
|
chant.vI.T = \relative {
|
||||||
|
d2 s4*9
|
||||||
|
d2 s4*4 c2 d4
|
||||||
|
s2 c
|
||||||
|
s4*5 d2 s2
|
||||||
|
s4 e2 s4*4 \augmentum s4 f2 s2
|
||||||
|
f2 e s4 d2 s4
|
||||||
|
d2 s4*4 f2 s g s4 d2 s4
|
||||||
|
}
|
||||||
|
chant.vI.B = \relative {
|
||||||
|
d2 s4*9
|
||||||
|
b2 s4*4 e,2 d4
|
||||||
|
s2 e
|
||||||
|
s4*5 f2 s2
|
||||||
|
s4 g2 s4*4 \augmentum s4 a2 s2
|
||||||
|
b2 g s4 d2 s4
|
||||||
|
b'2 s4*4 a2 s c s4 d2 s4
|
||||||
|
}
|
||||||
|
verba.vI = \lyricmode {
|
||||||
|
\set stanza = "1."
|
||||||
|
\override LyricText.self-alignment-X = #LEFT
|
||||||
|
Ne i -- ras -- cá -- ris Dó -- mi -- ne, "ne ultra memíneris" in -- i -- qui -- tá -- tis:
|
||||||
|
ec -- ce "cívitas Sancti facta est desérta:" "Sion de" -- sér -- ta fac -- ta est:
|
||||||
|
Je -- rú -- sa -- lem de -- so -- lá -- ta est:
|
||||||
|
"domus sancificatiónis tuæ et" gló -- ri -- æ tu -- æ, u -- bi lau -- da -- vé -- runt te pa -- tres nos -- tri.
|
||||||
|
}
|
||||||
|
chant.vII.meta = {
|
||||||
|
\chant.meta
|
||||||
|
s4*13 \augmentum s4
|
||||||
|
s4*5 \divisioMaior
|
||||||
|
s4*10 \divisioMaxima
|
||||||
|
s4*11 \divisioMaior
|
||||||
|
s4*9 \divisioMaxima
|
||||||
|
s4*17 \finalis
|
||||||
|
}
|
||||||
|
chant.vII.cantus = \relative c' {
|
||||||
|
s4 f4 g(a) a a a2 g4 a a(b) a \augmentum a
|
||||||
|
a g f e d
|
||||||
|
a'2 a g4 b a a( g) f
|
||||||
|
s a b c2 d4 c c(b) a a
|
||||||
|
f g(a) a2 f4 g f(e)
|
||||||
|
s4 f g(a) a a2 4(b) a a(g f) e f(e) d
|
||||||
|
}
|
||||||
|
chant.vII.S = \relative c' {
|
||||||
|
d2 s4*8 c2 s4*3 \augmentum s4 d2 s4
|
||||||
|
d2 e s4*3 f2 s4
|
||||||
|
a2 s4*5 a2 s2
|
||||||
|
s4*3 a2 s4 e2 s4
|
||||||
|
d2 s4*3 d2 s4*3 c2 s d s4
|
||||||
|
}
|
||||||
|
chant.vII.A = \relative c' {
|
||||||
|
a2 s4*8 a2 s4*3 \augmentum s4 a2 s4
|
||||||
|
g2 c s4*3 a2 s4
|
||||||
|
e'2 s4*5 f2 s2
|
||||||
|
s4*3 d2 s4 e2 s4
|
||||||
|
a,2 s4*3 b2 s4*3 a2 s a s4
|
||||||
|
}
|
||||||
|
chant.vII.T = \relative {
|
||||||
|
d2 s4*8 e2 s4*3 \augmentum s4 f2 s4
|
||||||
|
d2 e s4*3 f2 s4
|
||||||
|
a2 s4*5 a2 s2
|
||||||
|
s4*3 f2 s4 c2 s4
|
||||||
|
f2 s4*3 g2 s4*3 e2 s f s4
|
||||||
|
}
|
||||||
|
chant.vII.B = \relative {
|
||||||
|
d2 s4*8 a2 s4*3 \augmentum s4 d2 s4
|
||||||
|
b2 a s4*3 d2 s4
|
||||||
|
c2 s4*5 d2 s2
|
||||||
|
s4*3 b2 s4 a2 s4
|
||||||
|
d2 s4*3 g,2 s4*3 a2 s d s4
|
||||||
|
}
|
||||||
|
verba.vII = \lyricmode {
|
||||||
|
\set stanza = "2."
|
||||||
|
\override LyricText.self-alignment-X = #LEFT
|
||||||
|
Pec -- cá -- vi -- mus, "et facti sumus tam" -- quam im -- mún -- dus nos,
|
||||||
|
et ce -- cí -- di -- mus
|
||||||
|
"quasi" "fóli" -- um un -- ni -- vér -- si:
|
||||||
|
et i -- "niquitátes nostræ quais ventus" ab -- stu -- lé -- runt nos:
|
||||||
|
abs -- con -- "dísti fáciem tuam" a no -- bis,
|
||||||
|
et al -- li -- "sísti nos in manu in" -- i -- qui -- tá -- tis nos -- træ.
|
||||||
|
}
|
||||||
|
chant.vIII.meta = {
|
||||||
|
\chant.meta
|
||||||
|
s4*11 \divisioMaior
|
||||||
|
s4*10 \divisioMaxima
|
||||||
|
s4*11 \divisioMinima
|
||||||
|
s4*10 \divisioMaxima
|
||||||
|
s4*17 \finalis
|
||||||
|
}
|
||||||
|
chant.vIII.cantus = \relative c' {
|
||||||
|
s4 f g(a) a2 g4 c c(b) a
|
||||||
|
a a(d) c b a a(g) f f
|
||||||
|
s4 a b c2 c4(d) c c(b) a
|
||||||
|
s4 a2 g4(b) a a a(g) f
|
||||||
|
s4 f g(a) a2 a4(b) a a(g f) e f(e) d
|
||||||
|
}
|
||||||
|
chant.vIII.S = \relative c' {
|
||||||
|
d2 s4*5
|
||||||
|
s g2 s4*3 g2 s4 f
|
||||||
|
f2 s4 f2 f s4 f2 s4
|
||||||
|
a2 s4 g2 s g f4
|
||||||
|
f2 f s f s4 f2 s d s4
|
||||||
|
}
|
||||||
|
chant.vIII.A = \relative c' {
|
||||||
|
a2 s4*5
|
||||||
|
s d2 s4*3 c2 s4 a
|
||||||
|
d2 s4 c2 b s4 c2 s4
|
||||||
|
c2 s4 d2 s e a,4
|
||||||
|
d2 c s d s4 c2 s a s4
|
||||||
|
}
|
||||||
|
chant.vIII.T = \relative {
|
||||||
|
d2 s4*5
|
||||||
|
s g2 s4*3 e2 s4 f
|
||||||
|
f2 s4 f2 f s4 f2 s4
|
||||||
|
f2 s4 g2 s g f4
|
||||||
|
f2 f s b s4 e,2 s d2 s4
|
||||||
|
}
|
||||||
|
chant.vIII.B = \relative {
|
||||||
|
d2 s4*5
|
||||||
|
s b2 s4*3 c2 s4 d
|
||||||
|
b2 s4 a2 g s4 a2 s4
|
||||||
|
a2 s4 b2 s c d4
|
||||||
|
b2 a s g s4 a2 s d2 s4
|
||||||
|
}
|
||||||
|
verba.vIII = \lyricmode {
|
||||||
|
\set stanza = "3."
|
||||||
|
\override LyricText.self-alignment-X = #LEFT
|
||||||
|
Vi -- de "Dómine afflictiónem pó" -- pu -- li tu -- i,
|
||||||
|
et mit -- te quem mis -- sú -- rus es:
|
||||||
|
e -- mít -- "te Agnum domina" -- tó -- rem ter -- ræ,
|
||||||
|
"de Petra desérti ad montem" fí -- li -- æ Si -- on:
|
||||||
|
ut áu -- "ferat ipse jugum cap" -- ti -- vi -- tá -- tis nos -- træ.
|
||||||
|
}
|
||||||
|
chant.vIV.meta = {
|
||||||
|
\chant.meta
|
||||||
|
s4*16 \divisioMaior
|
||||||
|
s4*10 \divisioMaxima
|
||||||
|
s4*12 \divisioMaior
|
||||||
|
s4*8 \divisioMaxima
|
||||||
|
s4*6 \divisioMinima
|
||||||
|
s4*7 \divisioMaxima
|
||||||
|
s4*13 \divisioMaior
|
||||||
|
s4*13 \finalis
|
||||||
|
}
|
||||||
|
chant.vIV.cantus = \relative c' {
|
||||||
|
s4 f4 g a2
|
||||||
|
s4 f4 g a2 a4 g c c(b) a \divisioMaior
|
||||||
|
a a d c c b a a(g) f \divisioMaxima
|
||||||
|
s a b c c c(d) c c(b) a a \divisioMaior
|
||||||
|
s a2 g4(f) f(b) a \divisioMaxima
|
||||||
|
s d c(b) a a \divisioMinima
|
||||||
|
a g a f(g) f(e) \divisioMaxima
|
||||||
|
f g(a) a2 d4 c c b a a(g) f \divisioMaior
|
||||||
|
a a a(b) a a g g(f) e f(e) d \finalis
|
||||||
|
}
|
||||||
|
chant.vIV.S = \relative c' {
|
||||||
|
d2 s4 c2 d s4 f2 f s4 f2 f4
|
||||||
|
s2 f2 s4*3 e2 f4
|
||||||
|
f2 s e s d s
|
||||||
|
e s4*3 d2 d4
|
||||||
|
f2 s4*3 f4
|
||||||
|
f2 s4 c2 s
|
||||||
|
f2 s4*3 f2 s4*3 e2 f4
|
||||||
|
a2 s4*5 g2 s4 e2 d4
|
||||||
|
}
|
||||||
|
chant.vIV.A = \relative c' {
|
||||||
|
a2 s4 a2 a s4 a2 b s4 g2 a4
|
||||||
|
s2 b2 s4*3 g2 b4
|
||||||
|
c2 s c s a s
|
||||||
|
c s4*3 b2 a4
|
||||||
|
b2 s4*3 a4
|
||||||
|
b2 s4 g2 s
|
||||||
|
a2 s4*3 b2 s4*3 c2 c4
|
||||||
|
e2 s4*5 b2 s4 a2 a4
|
||||||
|
}
|
||||||
|
chant.vIV.T = \relative {
|
||||||
|
d2 s4 f2 f s4 c2 d s4 b2 c4
|
||||||
|
s2 d2 s4*3 e2 d4
|
||||||
|
f2 s a s f s
|
||||||
|
e s4*3 g2 f4
|
||||||
|
d2 s4*3 c4
|
||||||
|
d2 s4 e2 s
|
||||||
|
c2 s4*3 d2 s4*3 g2 a4
|
||||||
|
a2 s4*5 d,2 s4 c2 d4
|
||||||
|
}
|
||||||
|
chant.vIV.B = \relative {
|
||||||
|
d2 s4 f,2 d' s4 f,2 f s4 f2 f4
|
||||||
|
s2 b2 s4*3 c2 d4
|
||||||
|
a2 s c s d s
|
||||||
|
a s4*3 b2 d,4
|
||||||
|
b'2 s4*3 f4
|
||||||
|
f2 s4 g2 s
|
||||||
|
f2 s4*3 b2 s4*3 c2 f4
|
||||||
|
c2 s4*5 g2 s4 a2 d4
|
||||||
|
}
|
||||||
|
verba.vIV = \lyricmode {
|
||||||
|
\set stanza = "4."
|
||||||
|
\override LyricText.self-alignment-X = #LEFT
|
||||||
|
Con -- so "lámini,"
|
||||||
|
con -- so "lámini," pó -- pu -- le me -- us:
|
||||||
|
ci -- to vé -- ni -- et sa -- lus tu -- a:
|
||||||
|
qua -- re mæ -- ró -- re con -- sú -- me -- ris,
|
||||||
|
"quia innovávit" te do -- lor?
|
||||||
|
Sal -- vá -- bo te, no -- li ti -- mé -- re,
|
||||||
|
e -- go "enim sum" Dó -- mi -- nus De -- us tu -- us,
|
||||||
|
Sanc -- tus Is -- ra -- el, Re -- démp -- tor tu -- us.
|
||||||
|
}
|
||||||
|
AntVocalScore = \new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice = "melody" <<\chant.ant.meta \chant.ant.cantus>>
|
||||||
|
\new GregorianTranscriptionLyrics \lyricsto melody {\verba.ant}
|
||||||
|
>>
|
||||||
|
AntFullScore = <<
|
||||||
|
{\AntVocalScore}
|
||||||
|
\new StaffGroup <<
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceOne \chant.ant.meta \chant.ant.S>>
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceTwo \chant.ant.meta \chant.ant.A>>
|
||||||
|
>>
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\clef bass
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceOne \chant.ant.meta \chant.ant.T>>
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceTwo \chant.ant.meta \chant.ant.B>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
|
vIVocalScore = \new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice = "melodyvI" <<\chant.vI.meta \chant.vI.cantus>>
|
||||||
|
\new GregorianTranscriptionLyrics \lyricsto melodyvI {\verba.vI}
|
||||||
|
>>
|
||||||
|
vIFullScore = <<
|
||||||
|
{\vIVocalScore}
|
||||||
|
\new StaffGroup <<
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceOne \chant.vI.meta \chant.vI.S>>
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceTwo \chant.vI.meta \chant.vI.A>>
|
||||||
|
>>
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\clef bass
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceOne \chant.vI.meta \chant.vI.T>>
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceTwo \chant.vI.meta \chant.vI.B>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
|
vIIVocalScore = \new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice = "melodyvII" <<\chant.vII.meta \chant.vII.cantus>>
|
||||||
|
\new GregorianTranscriptionLyrics \lyricsto melodyvII {\verba.vII}
|
||||||
|
>>
|
||||||
|
vIIFullScore = <<
|
||||||
|
{\vIIVocalScore}
|
||||||
|
\new StaffGroup <<
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceOne \chant.vII.meta \chant.vII.S>>
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceTwo \chant.vII.meta \chant.vII.A>>
|
||||||
|
>>
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\clef bass
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceOne \chant.vII.meta \chant.vII.T>>
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceTwo \chant.vII.meta \chant.vII.B>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
|
vIIIVocalScore = \new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice = "melodyvIII" <<\chant.vIII.meta \chant.vIII.cantus>>
|
||||||
|
\new GregorianTranscriptionLyrics \lyricsto melodyvIII {\verba.vIII}
|
||||||
|
>>
|
||||||
|
vIIIFullScore = <<
|
||||||
|
{\vIIIVocalScore}
|
||||||
|
\new StaffGroup <<
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceOne \chant.vIII.meta \chant.vIII.S>>
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceTwo \chant.vIII.meta \chant.vIII.A>>
|
||||||
|
>>
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\clef bass
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceOne \chant.vIII.meta \chant.vIII.T>>
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceTwo \chant.vIII.meta \chant.vIII.B>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
|
vIVVocalScore = \new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice = "melodyvIV" <<\chant.vIV.meta \chant.vIV.cantus>>
|
||||||
|
\new GregorianTranscriptionLyrics \lyricsto melodyvIV {\verba.vIV}
|
||||||
|
>>
|
||||||
|
vIVFullScore = <<
|
||||||
|
{\vIVVocalScore}
|
||||||
|
\new StaffGroup <<
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceOne \chant.vIV.meta \chant.vIV.S>>
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceTwo \chant.vIV.meta \chant.vIV.A>>
|
||||||
|
>>
|
||||||
|
\new GregorianTranscriptionStaff <<
|
||||||
|
\clef bass
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceOne \chant.vIV.meta \chant.vIV.T>>
|
||||||
|
\new GregorianTranscriptionVoice <<\voiceTwo \chant.vIV.meta \chant.vIV.B>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
|
>>
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
\bgroup%
|
||||||
|
\topskip=0pt
|
||||||
|
\LTpre=0pt
|
||||||
|
\raggedbottom%
|
||||||
|
\begin{longtable}{@{}L}
|
||||||
|
\endlastfoot%
|
||||||
|
\textit{\VA{Tauet Himmel, von oben,
|
||||||
|
ihr Wolken, regnet den Gerechten. Die Erde öffne sich und sprieße den Retter hervor.}}\\
|
||||||
|
\textit{Zürne nicht länger, Herr,
|
||||||
|
nicht länger gedenke unserer Missetaten.
|
||||||
|
Siehe, die Heilige Stadt ist zur Wüste geworden,
|
||||||
|
Zion ist zur Wüste geworden.
|
||||||
|
Jerusalem ist verödet,
|
||||||
|
das Haus deiner Heiligung und deiner Herrlichkeit,
|
||||||
|
wo dich gepriesen haben unsere Väter. }\\
|
||||||
|
\textit{Wir haben gesündigt und sind unrein geworden
|
||||||
|
und sind gefallen wie ein Blatt,
|
||||||
|
und unsere Missetaten haben uns wie der Wind fortgetragen.
|
||||||
|
du hast dein Antlitz verborgen vor uns
|
||||||
|
und uns zerschmettert durch die Wucht unserer Schuld.}\\
|
||||||
|
\textit{Sieh an, Herr, die Betrübnis deines Volkes,
|
||||||
|
und sende, den du senden willst.
|
||||||
|
Sende aus das Lamm, den Beherrscher der Erde,
|
||||||
|
vom Felsen der Wüste zum Berg der Tochter Zion,
|
||||||
|
dass es hinwegnehme das Joch unserer Knechtschaft.}\\
|
||||||
|
\textit{Tröstet, tröstet, mein Volk!
|
||||||
|
Bald wird kommen dein Heil.
|
||||||
|
Warum verzehrst du dich in Trauer,
|
||||||
|
weil sich erneuert hat dein Schmerz?
|
||||||
|
Ich werde dich retten, fürchte dich nicht.
|
||||||
|
Denn ich bin der Herr, dein Gott,
|
||||||
|
der Heilige Israels, dein Erlöser}\\
|
||||||
|
\end{longtable}
|
||||||
|
\egroup%
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[%
|
||||||
|
congregation = 'freie_lieder/sagt_an_wer_ist_doch_diese_lyrics/sagt_an_wer_ist_doch_diese_lyrics.ly';
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
\version "2.22.1"
|
||||||
|
\language deutsch
|
||||||
|
%GL 531
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
melody = \relative {
|
||||||
|
\key c \major
|
||||||
|
\time 4/4
|
||||||
|
\partial 4
|
||||||
|
\repeat volta 2 {c'8 (d) | e4 e g d | e2 c4 c' | h c a4. g8 | 2 r4 }
|
||||||
|
g | c g a g8 (f) | e2 4 d | e8 (f) g4 f e | d2 4 g | e f d4. c8 | 2. \bar "|."
|
||||||
|
}
|
||||||
|
stropheEins = \lyricmode {
|
||||||
|
\set stanza = "1."
|
||||||
|
Sagt an, wer ist doch die -- se,
|
||||||
|
die auf am Him -- mel geht,
|
||||||
|
Sie kommt her -- vor von fer -- ne,
|
||||||
|
es schmückt sie Mond und Ster -- ne,
|
||||||
|
die Braut von Na -- za -- ret.
|
||||||
|
}
|
||||||
|
stropheEinsWDH = \lyricmode {
|
||||||
|
die ü -- berm Pa -- ra -- die -- se
|
||||||
|
als Mor -- gen -- rö -- te steht?
|
||||||
|
}
|
||||||
|
stropheDrei = \lyricmode {
|
||||||
|
\set stanza = "3."
|
||||||
|
O wohl dem Land, o wohl der Stadt,
|
||||||
|
so die -- sen Kö -- nig bei sich hat.
|
||||||
|
Wohl al -- len Her -- zen ins -- ge -- mein,
|
||||||
|
da die -- ser Kö -- nig zie -- het -- ein.
|
||||||
|
Er ist die rech -- te Freu -- den -- sonn,
|
||||||
|
bringt mit sich lau -- ter Freud und Wonn.
|
||||||
|
Ge -- lo -- bet sei mein Gott,
|
||||||
|
mein Trö -- ster früh und spat.
|
||||||
|
}
|
||||||
|
stropheVier = \lyricmode {
|
||||||
|
\set stanza = "4."
|
||||||
|
Macht hoch die Tür, die Tor macht weit,
|
||||||
|
eur Herz zum Tem -- pel zu -- be -- reit'.
|
||||||
|
Die Zweig -- lein der Gott -- se -- lig -- keit
|
||||||
|
steckt auf mit An -- dacht, Lust und Freud;
|
||||||
|
so kommt der Kö -- nig auch zu euch,
|
||||||
|
ja Heil und Le -- ben mit zu -- gleich.
|
||||||
|
Ge -- lo -- bet sei mein Gott,
|
||||||
|
voll Rat, voll Tat, voll Gnad.
|
||||||
|
}
|
||||||
|
stropheFuenf = \lyricmode {
|
||||||
|
\set stanza = "5."
|
||||||
|
Komm, o mein Hei -- land \markup{\smallCaps Je } -- \markup{\smallCaps su } Christ,
|
||||||
|
meins Her -- zens Tür Dir of -- fen ist.
|
||||||
|
Ach zieh mit Dei -- ner Gna -- de ein,
|
||||||
|
Dein Freund -- lich -- keit auch uns er -- schein.
|
||||||
|
Dein heil -- ger Geist uns führ und leit
|
||||||
|
den Weg zur ew -- gen Se -- lig -- keit.
|
||||||
|
Dem Na -- men Dein, o \markup{\smallCaps Herr,}
|
||||||
|
sei e -- wig Preis und Ehr.
|
||||||
|
}
|
||||||
|
|
||||||
|
\score{
|
||||||
|
\new Staff <<
|
||||||
|
\new Voice = "melody" \melody
|
||||||
|
\new Lyrics \lyricsto melody \stropheEins
|
||||||
|
\new Lyrics \lyricsto melody \stropheEinsWDH
|
||||||
|
>>
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
\song{[% purpose %]}{Sagt an, wer ist doch diese}{%
|
||||||
|
/St{1}{%
|
||||||
|
Sagt an, wer ist doch diese, /
|
||||||
|
die auf am Himmel geht, /
|
||||||
|
die überm Paradiese als Morgenröte steht? /
|
||||||
|
Sie kommt hervor von ferne, /
|
||||||
|
es schmückt sie Mond und Sterne, /
|
||||||
|
die Braut von Nazaret}
|
||||||
|
\St{2}{%
|
||||||
|
Sie ist die reinste Rose, /
|
||||||
|
ganz schön und auserwählt, /
|
||||||
|
die Magd, die makellose, /
|
||||||
|
die sich der Herr vermählt. /
|
||||||
|
O eilet sie zu schauen, /
|
||||||
|
die schönste aller Frauen, /
|
||||||
|
die Freude aller Welt.}
|
||||||
|
\St{3}{%
|
||||||
|
Sie strahlt im Tugendkleide, /
|
||||||
|
kein Engel gleichet ihr; /
|
||||||
|
die Reinheit ihr Geschmeide, /
|
||||||
|
die Demut ihre Zier, /
|
||||||
|
ein Blumengart, verschlossen, /
|
||||||
|
mit Himmelstau begossen, /
|
||||||
|
so blüht sie für und für.
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[%
|
||||||
|
scores.congregation = 'freie_lieder/sankt_michael/sankt_michael.ly';
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
\version "2.22.2"
|
||||||
|
\language deutsch
|
||||||
|
%GL 275
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
melody = \fixed c' {
|
||||||
|
\key e \minor
|
||||||
|
\time 6/4
|
||||||
|
\partial 1
|
||||||
|
e4 2 fis4 | g2 4 a2 4 | h2
|
||||||
|
g4 a2 4 | h2 \breathe
|
||||||
|
4 2 cis'4 | d'2 h4 h2 a4 | g2 \breathe
|
||||||
|
h4 a2 g4 | fis e h a2 g4 | fis e g a2 fis4 | e2 \bar "|."
|
||||||
|
}
|
||||||
|
Lyrics.I = \lyricmode {
|
||||||
|
\set stanza = "1."
|
||||||
|
Un -- ü -- ber wind -- lich star -- ker Held,
|
||||||
|
Sankt Mi -- cha -- el!
|
||||||
|
komm uns zu Hilf', zieh' mit zu Feld!
|
||||||
|
\set stanza = "1.=5."
|
||||||
|
Hilf uns im Strei -- te,
|
||||||
|
zum Sieg uns lei --te,
|
||||||
|
Sankt Mi -- cha -- el!
|
||||||
|
}
|
||||||
|
Lyrics.II = \lyricmode {
|
||||||
|
\set stanza = "2."
|
||||||
|
Die Kirch die an -- be -- foh -- len ist;
|
||||||
|
_ _ _ _
|
||||||
|
du un -- ser Schutz und Schirm -- herr bist.
|
||||||
|
}
|
||||||
|
Lyrics.III = \lyricmode {
|
||||||
|
\set stanza = "3."
|
||||||
|
Du bist der himm -- lisch Ban -- ner -- herr;
|
||||||
|
_ _ _ _
|
||||||
|
die En -- gel sind dein Kö -- nigs -- heer.
|
||||||
|
}
|
||||||
|
Lyrics.IV = \lyricmode {
|
||||||
|
\set stanza = "4."
|
||||||
|
Den Dra -- chen du er -- grif -- fen hast;
|
||||||
|
_ _ _ _
|
||||||
|
und un -- ter dei -- nen Fuß ge -- fasst.
|
||||||
|
}
|
||||||
|
Lyrics.V = \lyricmode {
|
||||||
|
\set stanza = "5."
|
||||||
|
Be -- schütz' mit dei -- nem Schild und Schwert;
|
||||||
|
_ _ _ _
|
||||||
|
die Kirch', den Hir -- ten und die Herd'.
|
||||||
|
}
|
||||||
|
\score {
|
||||||
|
<<
|
||||||
|
\new Staff {
|
||||||
|
\new Voice = "melody" \melody
|
||||||
|
}
|
||||||
|
\new Lyrics \lyricsto "melody" {\Lyrics.I}
|
||||||
|
\new Lyrics \lyricsto "melody" {\Lyrics.II}
|
||||||
|
\new Lyrics \lyricsto "melody" {\Lyrics.III}
|
||||||
|
\new Lyrics \lyricsto "melody" {\Lyrics.IV}
|
||||||
|
\new Lyrics \lyricsto "melody" {\Lyrics.V}
|
||||||
|
>>
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
[%
|
||||||
|
title = 'Segne du Maria';
|
||||||
|
scores.congregation = 'freie_lieder/segne_du_maria/segne_du_maria.ly';
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
\version "2.22.1"
|
||||||
|
\language deutsch
|
||||||
|
% GL 218
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
melody = \fixed c' {
|
||||||
|
\key c \major
|
||||||
|
\time 4/4
|
||||||
|
g4. f8 e4 g | c'2 a | g4. a8 g4 d | e2. r4
|
||||||
|
g4. f8 e4 g | c'2 h | a4 e fis4. 8 | g2. r4
|
||||||
|
d4. 8 e4 f | g2 e | f4. g8 a4 f | d2. r4
|
||||||
|
e4 g c' h | a4.( g8) f2 |
|
||||||
|
e4 g e4. d8 | g2. r4
|
||||||
|
a4. 8 d'4 c' | h4.( a8) g2 |
|
||||||
|
d4 f e4. d8 | c1 \bar "|."
|
||||||
|
}
|
||||||
|
stropheEins = \lyricmode {
|
||||||
|
\set stanza = "1."
|
||||||
|
Seg -- ne du, \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- \markup{\smallCaps a}
|
||||||
|
seg -- ne mich, dein Kind,
|
||||||
|
dass ich hier den Frie -- den,
|
||||||
|
dort den Him -- mel find!
|
||||||
|
Seg -- ne all mein Den -- ken,
|
||||||
|
seg -- ne all mein Tun,
|
||||||
|
\repeat unfold 2 {
|
||||||
|
lass in dei -- nem Se -- gen
|
||||||
|
Tag und Nacht mich ruhn!
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stropheZwei = \lyricmode {
|
||||||
|
\set stanza = "2."
|
||||||
|
Seg -- ne du, \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- \markup{\smallCaps a}
|
||||||
|
al -- le, die mir lieb,
|
||||||
|
dei -- nen Mut -- ter -- se -- gen
|
||||||
|
ih -- nen täg -- lich gib!
|
||||||
|
Dei -- ne Mut -- ter -- hän -- de,
|
||||||
|
breit auf al -- le aus,
|
||||||
|
\repeat unfold 2 {
|
||||||
|
seg -- ne al -- le Her -- zen,
|
||||||
|
seg -- ne je -- des Haus! }
|
||||||
|
}
|
||||||
|
stropheDrei = \lyricmode {
|
||||||
|
\set stanza = "3."
|
||||||
|
Seg -- ne du, \markup{\smallCaps Ma} -- \markup{\smallCaps ri} -- \markup{\smallCaps a}
|
||||||
|
uns -- re letz -- te Stund!
|
||||||
|
Sü -- ße Tros -- tes -- wor -- te
|
||||||
|
flüs -- tre dann der Mund!
|
||||||
|
Dei -- ne Hand, die lin -- de,
|
||||||
|
drück das Aug uns zu,
|
||||||
|
\repeat unfold 2 {
|
||||||
|
bleib im Tod und Le -- ben
|
||||||
|
un -- ser Se -- gen du!}
|
||||||
|
}
|
||||||
|
|
||||||
|
\score{
|
||||||
|
\new Staff <<
|
||||||
|
\new Voice = "melody" \melody
|
||||||
|
\new Lyrics \lyricsto melody \stropheEins
|
||||||
|
\new Lyrics \lyricsto melody \stropheZwei
|
||||||
|
\new Lyrics \lyricsto melody \stropheDrei
|
||||||
|
>>
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[%
|
||||||
|
scores.congregation = 'freie_lieder/selig_wem_christus/selig_wem_christus.ly';
|
||||||
|
-%]
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
\version "2.22.2"
|
||||||
|
\language deutsch
|
||||||
|
%GL 275
|
||||||
|
|
||||||
|
\include "../../../lilypond_songsheet_paper.ly"
|
||||||
|
melody = \fixed c' {
|
||||||
|
\key c \major
|
||||||
|
\time 4/4
|
||||||
|
g2 e4 f | e (d) c2 | e4 f g g | a2 g \breathe |
|
||||||
|
g a4 h c'2 g | c'4 h a h | a2 g \breathe |
|
||||||
|
c'2 g4 a | g (f) e2 | f4 e f g | f (e) d2 \breathe |
|
||||||
|
g c4 f | e2 (d) | c1 \bar "|."
|
||||||
|
}
|
||||||
|
Lyrics.I = \lyricmode {
|
||||||
|
\set stanza = "1."
|
||||||
|
Se -- lig, wem Chri -- stus auf dem Weg be -- geg -- net,
|
||||||
|
um ihn zu ru -- fen, al -- les zu ver -- las -- sen,
|
||||||
|
sein Kreuz zu tra -- gen und in sei -- ner Kir -- che
|
||||||
|
für ihn zu wir -- ken.
|
||||||
|
}
|
||||||
|
Lyrics.II = \lyricmode {
|
||||||
|
\set stanza = "2."
|
||||||
|
Bei ihm ist Chri -- stus, stärkt ihn in der Wü -- ste,
|
||||||
|
schenkt ihm durch Lei -- den An -- teil an der Freu -- de.
|
||||||
|
Und sei -- ne Jün -- ger spü -- ren Chri -- sti Lie -- be
|
||||||
|
in sei -- ner Nä -- he.
|
||||||
|
}
|
||||||
|
Lyrics.III = \lyricmode {
|
||||||
|
\set stanza = "3."
|
||||||
|
Durch sei -- ne Jün -- ger spricht zu uns der Mei -- ster,
|
||||||
|
ruft uns zur Um -- kehr, spen -- det Licht und Hoff -- nung.
|
||||||
|
In ih -- ren Ta -- ten wird die Bot -- schaft Chri -- sti
|
||||||
|
für uns le -- ben -- dig.
|
||||||
|
}
|
||||||
|
Lyrics.IV = \lyricmode {
|
||||||
|
\set stanza = "4."
|
||||||
|
Va -- ter im Him -- mel, hei -- lig ist Dein Na -- me,
|
||||||
|
Dein Reich wird kom -- men, das Dein Sohn ver -- hei -- ßen.
|
||||||
|
Hilf uns, im Geis -- te ihm den Weg be -- rei -- ten,
|
||||||
|
als Dei -- ne bo -- ten.
|
||||||
|
}
|
||||||
|
|
||||||
|
\score {
|
||||||
|
<<
|
||||||
|
\new Staff {
|
||||||
|
\new Voice = "melody" \melody
|
||||||
|
}
|
||||||
|
\new Lyrics \lyricsto "melody" {\Lyrics.I}
|
||||||
|
\new Lyrics \lyricsto "melody" {\Lyrics.II}
|
||||||
|
\new Lyrics \lyricsto "melody" {\Lyrics.III}
|
||||||
|
\new Lyrics \lyricsto "melody" {\Lyrics.IV}
|
||||||
|
>>
|
||||||
|
\layout {
|
||||||
|
\context {
|
||||||
|
\Score
|
||||||
|
\omit BarNumber
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
[%
|
||||||
|
scores.congregation = 'freie_lieder/tauet_himmel/tauet_himmel.ly';
|
||||||
|
-%]
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user