Files
freie_lieder/halleluja_174_6/halleluja_174_6.ly
T
2024-10-17 16:55:03 +02:00

31 lines
623 B
Plaintext

\version "2.22.2"
\language deutsch
\include "../../../lilypond_songsheet_paper.ly"
Song.Melody = \relative {
\key g \major
\time 3/4
\partial 4
d'4 | h'2 a4 | g2 a8 h | c2 (h4) | a2 \breathe
d,4 | d'2 c4 | h2 \breathe c4 | d (c) h | a2 \breathe
8 h | c4 (h a) | g2 \bar "|."
}
Song.Lyrics = \lyricmode {
\set stanza = "V/A"
\repeat unfold 4 {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
}
}
}