initial commit

This commit is contained in:
2024-10-17 16:42:32 +02:00
parent b25433b567
commit 851607514a
119 changed files with 3666 additions and 0 deletions
@@ -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
}
}
}