> Here's the think that seems to cause troubles. It seems to be a combination of: > - Multi line markups, and > - #(layout-set-staff-size 30)
> Well, this is PART of the problem, but not the whole problem. I used Lucas's test file with layout-set-staff-size, and it still worked properly; My MWE is "simple" compared to Pierre-Luc's. Lilypond may scale my code fine because it is an simple MWE; huge blocks of code might make it bend a bit... In a project I wrote this week, I've managed to recreate Pierre-Luc's "glitch" by having two score blocks without an enclosing book block. I'll try to find it and send it here. It wasn't related by commands (markup and other texts) but by the chord glitch in question. Em sáb., 6 de dez. de 2025, 12:29, Carl Sorensen <[email protected]> escreveu: > On Sat, Dec 6, 2025 at 10:22 AM Carl Sorensen <[email protected]> > wrote: > > > > On Tue, Dec 2, 2025 at 8:29 AM Pierre-Luc Gauthier > > <[email protected]> wrote: > > > > > > I've not managed to produce a MWE yet but I am trying. > > > > > > > I've used Pierre-Luc's code to try to track down the issue. I've got > > a single file working example (not M, or tiny, but working) that I > > sent to Pierre-Luc. I haven't posted it here because of potential > > copyright issues. > > > > Here's the think that seems to cause troubles. It seems to be a > combination of: > > - Multi line markups, and > > - #(layout-set-staff-size 30) > > Well, this is PART of the problem, but not the whole problem. I used > Lucas's test file with layout-set-staff-size, and it still worked > properly; > > %%Code starts > \version "2.25.25" > > \paper{ > #(layout-set-staff-size 60) > } > > melody = {\new Staff { \new Voice \with {\consists "Ambitus_engraver"} { > \clef bass > \sectionLabel \markup \left-column { \magnify #1 "0:00" \vspace #0.2 > \bold "Intro" } > \textMark \markup \bold "rubato" > \compressMMRests R1*2 > \sectionLabel \markup \left-column { \magnify #1 "0:07" \vspace #0.2 > \bold "1 COUPLET" } > \tempo "a tempo" 4 = 64 > c4 c8 c16 d e8 b, e,4 > a,4 r8 a,8 g,4 c > f,4 r8 f,8 e,4 e \break > d4 r8 a, g,4 g > \sectionLabel \markup \left-column { \magnify #1 "0:22" \vspace #0.2 > \bold "2 COUPLET" } > c4 c8 c16 d e8 b, e,4 > a,4 r8 a,8 g,4 c > f,4 r8 f,8 e,4 e \break > }}} > harmony = {\new ChordNames {\chordmode{ > \compressMMRests R1*2 > c2 e:7 > a:m c4/g c:7 > f2:7+ c/e > d2:7 f4:7+ g:7 > c2 e:7 > a:m c4/g c:7 > f2:7+ c4/e a:m7 > }}} > \score {<< \harmony \melody >>} > %%Code ends > > Carl > >
