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
+3
View File
@@ -0,0 +1,3 @@
[%
scores.congregation = 'freie_lieder/hallaluja_175_5/hallaluja_175_5.ly';
-%]
+39
View File
@@ -0,0 +1,39 @@
\version "2.22.2"
\language deutsch
\header {
% title = "GL 175 7"
}
\include "../../../lilypond_songsheet_paper.ly"
\include "gregorian.ly"
chant = \fixed c' {
\key g \major
\time 1/4
\override Lyrics.LyricText.X-extent = #'(0 . 3)
\clef "treble"
fis4 g a8 (h) a4\divisioMinima
a8 (g) e (g) fis (e) d4 e8 (c) \tuplet 3/2 {e8 (g fis)} d4 d\finalis
}
verba = \lyricmode {
Al -- le --lu -- ja, al -- le -- lu -- ja, al -- le -- lu -- ja.
}
\score {
\new Staff <<
\new Voice = "melody" \chant
\new Lyrics = "one" \lyricsto melody \verba
>>
\layout {
\context {
\Staff
\remove "Time_signature_engraver"
\override BarLine.X-extent = #'(-1 . 1)
\hide Stem
\hide Beam
\hide BarLine
\hide TupletNumber
}
\context {
\Score
\omit BarNumber
}
}
}