Re: How to change the alignment of the dashed line in \cresc

2021-12-01 Thread Lib Lists
Hi Valentin, Thanks again and you are right. In the following example the 'cresc.' gets too close to the staff, with the stem of the 'b' in the first bar entering in the space of the dynamic. Adding Y values of 0.75 seems to work well. { \override DynamicTextSpanner.bound-details.left.Y = -0.75

Re: How to change the alignment of the dashed line in \cresc

2021-11-30 Thread Valentin Petzel
Hello Lib, just remove the overrides to left.Y and right.Y. But having the line centered but the cresc raised will look a bit weird. Maybe experiment by setting the Y values to something between 0 and -1. Cheers, Valentin 30.11.2021 13:37:43 Lib Lists : > Hi Valentin, > thank you so much for

Re: How to change the alignment of the dashed line in \cresc

2021-11-30 Thread Lib Lists
Hi Valentin, thank you so much for your help! However, with your solution, the \ff gets aligned (more or less) with the bottom of the line, while I'd want it to be aligned with the 'cresc.' text as in the original example. I tried to experiment changing the values of your solution, but couldn't

Re: How to change the alignment of the dashed line in \cresc

2021-11-30 Thread Leo Correia de Verdier
I would have expected \override DynamicTextSpanner.bound-details.left.stencil-align-dir-y = #DOWN to work, since I think that is the property to be changed, but it seems it needs a lower value, like \override DynamicTextSpanner.bound-details.left.stencil-align-dir-y = #-2 To align properly.

Re: How to change the alignment of the dashed line in \cresc

2021-11-30 Thread Valentin Petzel
Hello Lib, try this: \version "2.22.1" { \override DynamicTextSpanner.bound-details.left.Y = #-1 \override DynamicTextSpanner.bound-details.right.Y = #-1 \override DynamicTextSpanner.bound-details.left.stencil-offset = #'(-0.75 . 0) c'1\cresc d' e'\ff } Cheers, Valentin Am Dienstag,