lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Hairpins can continue around line breaks but not page breaks?


From: Jean Abou Samra
Subject: Re: Hairpins can continue around line breaks but not page breaks?
Date: Mon, 12 Sep 2022 17:36:27 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.2.0

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]