Le 12/09/2022 à 04:25, Kenneth Wolcott a écrit :
HI;
I have a partial crescendo hairpin followed by a forced page break
but the hairpin silently vanishes on the following page. Is this a
known bug or am I doing something stupid? At this point I can go with
the forced line breaks of the original arranger resulting in 6
cramped systems on one page followed by the last (and only) system on
the following page and still have the hairpin wrap around the line break.
If what I am stating is not obvious, I can provide screenshots.
Better than that: please provide LilyPond code. It's very hard to
diagnose problems otherwise. Cf. https://lilypond.org/tiny-examples.html
The only case I know of where LilyPond will remove the hairpin on the
next system is if it ends on the first note of that system, e.g.
\version "2.22.2"
{
c'1\< \break c'1\!
}
in which case you can apply the technique from
https://lsr.di.unimi.it/LSR/Item?id=804 as Andrew said to show it
nevertheless:
\version "2.22.2"
{
\override Hairpin.after-line-breaking = ##t
\override Hairpin.to-barline = ##f
c'1\< \break c'1\!
}
Jean