lilypond-user
[Top][All Lists]
Advanced

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

Re: Adjusting the upper tie of an octave


From: David Nalesnik
Subject: Re: Adjusting the upper tie of an octave
Date: Fri, 13 Jun 2014 14:36:46 -0500

Hi Knute,


On Fri, Jun 13, 2014 at 12:43 PM, Knute Snortum <address@hidden> wrote:
I'm having trouble getting shapeTieColumn to apply to ties that are not after breaks.  Is this function only for broken ties?  If so, I don't have a solution to my problem.  If not, what am I doing wrong?

\version "2.18.2"
\include "notation-snippets/shaping-bezier-curves/shape-tie-column/definition.ily"

\relative c' {
  <e bes' es>1 ~
  \shapeTieColumn #'( 
                      ( () ((0 . -1) (0 . 0) (0 . 0) (0 . -1)) ) 
                      ( () ((0 . 0) (0 . 0) (0 . 0) (0 . 0)) )
                      ( () ((0 . 0) (0 . 0) (0 . 0) (0 . 0)) ) )
  %-- only works when I uncomment this --% \break
  | q
}


The () in each line refers to the first broken piece, or to the whole tie if unbroken.   So, when applied to an unbroken tie, you're asking for no displacement, as () is shorthand for ((0 . 0) (0 . 0) (0 . 0) (0 . 0)),  Just omit the () for each piece.

If you had three broken pieces per tie (not that that's particularly likely), you would add a number-pair-list to represent the third group.

HTH,
David 


reply via email to

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