Hello! I'm writing down the structure of the song "Stargazer" (by Rainbow)
in lilypond and have encountered a situation due to the song's form of
ABABCAE: A is the verse and refrain; B is a pivot or "a tiny bridge"; C is
the interlude; and E is the coda/ending. I've managed to write down a
functional file and proof-tested it by using the \unfoldRepeats snippet.
However, I do not know a way to remove this volta bracket. Is there a way
to hide the volta bracket?
Best regards,
Lucas
%%Code begins
\version "2.25.20"
music = { \relative c' {
\repeat segno 3 {
c1 % this C represents the verse & refrain/chorus.
\alternative {
\volta 1,2 {
d1 % the D is a pivot/tiny bridge that is to be skipped
% after the second return (i.e "after the solo").
\alternative {
\volta 1 {}
\volta 2 {e1} % the E is an interlude/solo.
}} % end nested alternative & volta
\volta 3 {f1} % the coda after the second return
} % end alternative
} % end segno
}} % end variable & relative
\score { {\relative c' {c1 d1 c1 d1 e1 c1 d1 f1}} }
\score { \music }
\score { \unfoldRepeats \music }
%%Code ends