Opus/2025.01.23-Serenity/snip/SSUDUUS.ly
2026-07-04 09:09:13 -07:00

43 lines
551 B
Plaintext
Executable File

\version "2.24.2"
#(set-global-staff-size 17)
\paper {
property-defaults.fonts.serif = "Caudex"
}
\header {
tagline = "" % Suppresses the default footer message
}
global = {
\key c \major
\omit Staff.TimeSignature
}
melody = \absolute {
\global
\cadenzaOn
c'1 % P
c'1
d'1 % T
c'1
d'1
f'1
f'1
\cadenzaOff
}
text = \lyricmode {
S S U D U U S
}
\score {
<<
\new Staff {
\context Voice = "vocal" { \melody }
}
\new Lyrics \lyricsto "vocal" \text
>>
}