39 lines
882 B
Plaintext
39 lines
882 B
Plaintext
\version "2.22.2"
|
|
\language deutsch
|
|
\header {
|
|
% title = "GL 175 7"
|
|
}
|
|
\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
|
|
}
|
|
}
|
|
}
|