Hi Frimlik,
I don't really understand what you are trying to do, but the code below
adds a break in the breve
\version "2.20.0"
\paper {
#(set-paper-size "a4landscape")
}
ToninaZalmu = \key c \major
FirstMusicVerse = \relative {
\cadenzaOn
\ToninaZalmu
g'\breve*1/2 \bar "" \break \once \hide g'1 e8 g a4 g \bar "|"
}
VerseOne = \lyricmode {
\set Lyrics.stanza = "1." % číslo "sloky" - verše zobrazené před textem
\override LyricText.self-alignment-X = #LEFT % odsazení textu k notám (kvůli
breve notám)
"Lorem ipsum dolor sit amet, consectetuer adipiscing elit.+" "Etiam commodo
dui eget wisi. Nunc auctor." Su -- spen -- di -- sse.
}
\score {
\new Staff = "staff" <<
\clef "treble"
\new Voice = "first" <<
\voiceOne
\FirstMusicVerse
>>
\new Lyrics \with { alignBelowContext = "staff" % umístění sloky pod
basovou osnovu
\override VerticalAxisGroup.
nonstaff-relatedstaff-spacing.padding = #2 % zvetseni
mezery mezi systemem a slokou
\override VerticalAxisGroup.
nonstaff-nonstaff-spacing.padding = #1
% zvětšení mezery pod touto slokou (k oddělení společně
zpívanýchveršů)
}
\lyricsto "first" {
\VerseOne
}
>>
}
Is that what you want?
Kevin