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
+7
View File
@@ -0,0 +1,7 @@
[%
scores = {
gregorian = 'gregorio_scores/kyrie/kyrie_xvi.gabc'
};
credits.TM = 'Vat. XVI';
-%]
[%# Accompanyment available. Arragngement Berthold Hummel%]
+15
View File
@@ -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
}
}
}
+15
View File
@@ -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
}
}
}
+15
View File
@@ -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
}
}
}
+61
View File
@@ -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>>
>>
>>
>>