Looking at the various documentation snippets on repeats it looks like there is no way to use the \repeat instruction to encode what Iβm trying to transcribe into Lilypond.
Nevertheless want to check with the collective knowledge on this list to prevent that Iβm somehow overlooking the obvious solution to my problem. A minimal example of what Iβm trying to achieve that renders fine for the printed sheet, but does not have the "from segno mark to codamark and then the codaβ semantics embedded so that unfolding repeats would omit the segno-to-coda part: \version β2.24.0β { b1 \repeat volta 2 { cβ \segnoMark 1 d' e' \codaMark 1 \alternative { \volta 1 { f' } \volta 2 { f' g' \break % from segno mark to coda mark and then the coda here } } } \section \sectionLabel "Codaβ aβ } Visually working for a printed sheet, but as the βfrom segno mark to coda markβ is not actually embedded in code it will not properly unfold. What Iβm trying to encode semantically is: So the expected repeat-unfolded rendering Iβm looking to achieve (without manually repeating the segnoMark to codaMark phrase before the actual coda ) would be b (before the repeat) cβ dβ eβ fβ (first repeat) cβ dβ eβ fβ gβ (second repeat) dβ eβ aβ (from segnoMark to codaMark followed by the coda)