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,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}
>>