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
+32
View File
@@ -0,0 +1,32 @@
\version "2.22.2"
\language deutsch
\include "../../../lilypond_songsheet_paper.ly"
Song.Melody = \relative {
\key c \major
\time 9/2
a'4 g a2 d, \breathe
f4 g a (c) a g f (g) e2 d \bar "|."
}
Song.Lyrics = \lyricmode {
\set stanza = "V/A"
\repeat unfold 2 {Hal -- le -- lu -- ja,} Hal -- le -- lu -- ja.
}
\score {
<<
\new Voice = "melody" {\Song.Melody}
\new Lyrics \lyricsto "melody" {\Song.Lyrics}
>>
\layout {
\context {
\Score
\omit BarNumber
}
\context{
\Staff
\remove "Time_signature_engraver"
}
}
}