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