On 17 December 2009 22:21, Reinhold Kainhofer <[email protected]> wrote: > > With the new Dynamics context for PianoStaff, the recommended way is to attach > the dynamics to skips in the Dynamics context... Unfortunately, dynamics > attached to a skip and dynamics attached to actual notes are differently > aligned: s\p results in the \p being far further to the left than in c\p. > > Attached is an example. > > Is there any way to make lilypond use the same horizontal position for s\p and > c\p ???
Sorry to dig out this more-than-one-year-old message but I think somebody reported the exactly same issue on the LilyPond French Users mailing list: http://lilypond-french-users.1298960.n2.nabble.com/Centrer-les-nuances-sur-le-centre-des-notes-tp6001943p6005754.html Is this the same issue as #631? http://code.google.com/p/lilypond/issues/detail?id=631 AFAICS #631 does not have a Dynamics context but the problem seems to be the same (misalignment of dynamic attached to a skip). I do not see in #631 comments that this may be related to #620 IIUC Neil's comment. http://lists.gnu.org/archive/html/bug-lilypond/2009-12/msg00322.html Can't the solution of (fixed) issue #1194 be used also in this case, as I read comment #5 in this issue: > "This is the same problem you get with the Dynamics context, where the > dynamics are aligned to paper columns. http://code.google.com/p/lilypond/issues/detail?id=1194#c5 Thanks in advance. Cheers, Xavier -- Xavier Scheuer <[email protected]>
dynamics_alignment.pdf
Description: Adobe PDF document
\version "2.13.8"
mm = \relative c'' { c2 c c c c}
dd = \notemode { s2\f s s\p s s\f }
md = \relative c'' {c2\f c c\p c c\f }
\score {
\new PianoStaff <<
% That's how the pp should be aligned horizontally:
\new Staff \md
% Unfortunately, attaching the dynamics to skips will position them too far to the left:
\new Staff <<
\mm
\dd
>>
% With the new Dynamics context, unfortunately, attaching dynamics to skips
% is the default, resulting in ugly dynamics position (i.e. dynamics touching
% the bar line!)
\new Staff \mm
\new Dynamics \dd
>>}
_______________________________________________ bug-lilypond mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-lilypond
