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 @@
[%
song_title = "Christus Vincit";
scores = {
leadsheet = "freie_lieder/christus_vincit/christus_vincit_leadsheet.ly"
congregation = "freie_lieder/christus_vincit/christus_vincit_lz.ly"
}
%]
@@ -0,0 +1,20 @@
\version "2.24.3"
\language deutsch
\include "../../../lilypond_musician_score_paper.ly"
\include "christus_vincit_vars.ly"
\score {
<<
\new ChordNames {
\Song.Chords
}
{\Song.FullScore}
>>
\layout {
\context {
\Score
\omit BarNumber
}
}
}
+15
View File
@@ -0,0 +1,15 @@
\version "2.24.3"
\language deutsch
\include "../../../lilypond_songsheet_paper.ly"
\include "christus_vincit_vars.ly"
\score {
{\Song.FullScore}
\layout {
\context {
\Score
\omit BarNumber
}
}
}
+30
View File
@@ -0,0 +1,30 @@
\version "2.24.3"
\language deutsch
Song.Melody = \fixed c' {
\autoBeamOff
a4 a c' c' |
f f a a |
d' g c' f8[ b] | a4( g8.) f16 2
\bar "|."
}
Song.Chords = \chordmode {
f2 c d:m a:m b4 c f d:m f c f2
}
Song.Lyrics = \lyricmode {
\set stanza = "V/A"
Chris -- tus vin -- cit. Chris -- tus reg -- nat. Chris -- tus, Chris -- tus im -- pe -- rat.
}
Song.FullScore = {
<<
\new Staff {
\key f \major
\time 2/2
\new Voice = "melody" {\Song.Melody}
}
\new Lyrics \lyricsto "melody" {\Song.Lyrics}
>>
}