Re: function to force accidentals on a subset of notes

2023-10-22 Thread Michael Winter via LilyPond user discussion
Thanks Lukas! This works but also forces the accidental on tied notes. Best, Michael Oct 22, 2023, 10:19 by l...@gmx.de: > > Hi Michael, > > > this is easily accomplished with an custom engraver. (I perfectly > understand that the terms "easily" and "custom engraver" don't seem to

Re: Y-offset of dynamic text after break

2023-10-22 Thread Jean Abou Samra
Le dimanche 22 octobre 2023 à 13:48 -0700, Knute Snortum a écrit : > Is it true then that using extra-offset in these situations are the only way > to move the dynamic text? No, because there are still limits on how close vertical axis groups can get even without considering their outlines. Try \t

Re: Y-offset of dynamic text after break

2023-10-22 Thread Knute Snortum
Thanks for the explanation. Is it true then that using extra-offset in these situations are the only way to move the dynamic text? -- Knute Snortum On Sun, Oct 22, 2023 at 12:30 PM Jean Abou Samra wrote: > Hi, > > The DynamicText's Y-offset controls its position relative to its baseline, > wh

Re: Y-offset of dynamic text after break

2023-10-22 Thread Jean Abou Samra
Hi, The DynamicText's Y-offset controls its position relative to its baseline, which is the VerticalAxisGroup of the Dynamics context. Without `\break`, the VerticalAxisGroup contains two dynamics, "f" and "p", with "p" offset compared to "f", which forces them to be at different positions. Wit

displaying `script-priority`

2023-10-22 Thread Werner LEMBERG
How can I make LilyPond display the actual values of `script-priority` for a stack of grobs? Let's assume I have ``` { \set strokeFingerOrientations = #'(up) \set fingeringOrientations = #'(up) } ``` and I want to position the fingerings for the upper note above the fingerings of the lo

Re: Parentheses : optional anacrouse and chords at the end of a score

2023-10-22 Thread Guy Stalnaker
This should get you what you want: %%% \version "2.24.0" startParenthesis = {   \once \override Parentheses.stencils = #(lambda (grob) (let ((par-list (parentheses-interface::calc-parenthesis-stencils grob))) (list (car par-list) point-stencil ))) } endParenthesis = {   \onc

Re: Parentheses : optional anacrouse and chords at the end of a score

2023-10-22 Thread Jean Abou Samra
Have a look at https://lsr.di.unimi.it/LSR/Item?id=902  signature.asc Description: This is a digitally signed message part

Parentheses : optional anacrouse and chords at the end of a score

2023-10-22 Thread Guy Melançon
I understand the \parenthesize command applies to a single note. I would like the parentheses to wrap more tan just one note. Something like \parenthesize {c4 d e f} to have a parentheses right before c and after f. This would be useful writing a jazz score to include an optional anacrouse in the

Re: function to force accidentals on a subset of notes

2023-10-22 Thread Lukas-Fabian Moser
Hi Michael, this is easily accomplished with an custom engraver. (I perfectly understand that the terms "easily" and "custom engraver" don't seem to go well together at first - I thought so for many years as well -, but after some getting used to it, the concept is actually quite simple and e