Put brackets before and after the "repeat unfold 3". Don't know what causes this bug, but it still happens in version 2.25.19.
%% \fixed c'' { \repeat volta 2 { {\repeat unfold 3 { c1 }} \alternative { \volta 1 { d } \volta 2 { e } } } c4 r r2} %% Em qui., 10 de out. de 2024 às 13:21, Cameron Hall <camerongh...@cox.net> escreveu: > I've run into a strange problem that I think may be a bug. In this MWE, > I have a repeat with alternate endings. However, the "\repeat unfold 3 > { c1 }" is causing the volta brackets to disappear for some reason. If > I instead write out "c1 c1 c1", it works as expected. If I add another > note right before the "\alternative", it also works as expected. > However, if there's a repeat right before the "\alternative", it messes > up. > > %%% > \version "2.24.4" > \fixed c'' { > \repeat volta 2 { > \repeat unfold 3 { c1 } > % c1 c1 c1 > \alternative { > \volta 1 { d } > \volta 2 { e } > } > } > c4 r r2 > } > %%% > >