On 10/24/2019 5:14 PM, Simon Albrecht wrote:
On 24.10.19 18:33, Ben wrote:
Is it possible to whiteout hairpins?
Of course—the real problem here is that you have to make the hairpin
ignore the markup for its placement. Here’s a fidgety solution:
%%%%%%%%%%
\version "2.19.83"
placeAbsolute = #(define-event-function (xy ev) (pair? ly:music?)
#{
\tweak whiteout ##t
\tweak outside-staff-priority ##f
\tweak Y-offset 0
\tweak extra-offset $xy
$ev
#})
\relative c'
{
c2 d e\< f g-\placeAbsolute #'(0 . -4) _"C" f\! e d c
}
%%%%%%%%%%%
HTH, Simon
Hi Simon,
This is very helpful yes thank you! It gives me a different way to
approach this.
I did notice one thing however, using your code. It seems like if I
don't use capital letters (or "anything" that is big enough to cover the
entire hairpin, it doesn't whiteout fully. Is this correct?
Is there any way to adjust that so it always takes up a full chunk of
the hairpin regardless of the true size of the markup?
Sorry if this is a silly question.
%%%%
c2 d e\< f g-\placeAbsolute #'(0 . -3.75) _"c" f\! e d c
%%%%