lilypond-user
[Top][All Lists]
Advanced

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

Re: Moving a single note (optical spacing once more)


From: Urs Liska
Subject: Re: Moving a single note (optical spacing once more)
Date: Fri, 4 Dec 2015 11:25:17 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0


Am 04.12.2015 um 11:23 schrieb Urs Liska:
> How could I achieve what I need?

And for experimenting, here's the code

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\version "2.19.32"

music = {
  \new PianoStaff <<
    \new Staff {
      c'16 e'
      % place this override before the a' or the e' to experiment
      %\once \override NoteHead.extra-spacing-width = #'(0 . 0.75)
      \once \override NoteSpacing.same-direction-correction = #-20
      a'
      e'
      % comment out one of the following two lines for musical alternatives
      <c' a' c''> \arpeggio
      %c'
      e' a' e'
    }
    \new Staff {
      \clef bass
      a8 a a a
    }
  >>
}

\score {
  \music
  \layout {
    \context {
      \Score
      % optionally comment the following override
      \override SpacingSpanner.uniform-stretching = ##t
    }
  }
}

%%%%%%%%%%%%%%%%%%%%



reply via email to

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