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