lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Offset PedalMarking


From: Aaron Hill
Subject: Re: Offset PedalMarking
Date: Wed, 05 Sep 2018 02:17:25 -0700
User-agent: Roundcube Webmail/1.3.6

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]