On 2018-09-05 01:53, foxfanfare wrote:
I'd like to move globally the pedal markings for piano to the left, but only the SustainOn sign, not the release one. If I write someting like \override SustainPedal.X-offset, they will both move. I wonder how it is possible to
be done.

You might be able to achieve this by adjusting both the `parent-alignment-X` and `self-alignment-X` properties. See the following:

%%%%
\version "2.19.82"
music = \relative c' {
  c2. \sustainOn c4 \sustainOff
  \override Staff.SustainPedal.parent-alignment-X = 2
  \override Staff.SustainPedal.self-alignment-X = 2
  c2. \sustainOn c4 \sustainOff
}
\score { << \new Staff \music >> }
%%%%

-- Aaron Hill

_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to