lilypond-user
[Top][All Lists]
Advanced

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

Re: Symmetrical ties in TieColumn


From: David Nalesnik
Subject: Re: Symmetrical ties in TieColumn
Date: Sat, 19 Oct 2013 18:56:08 -0500

Karol,


On Sat, Oct 19, 2013 at 6:22 PM, Karol Majewski <address@hidden> wrote:

Thank you, David, it works indeed! I know that this is not exactly what I asked for but it is a good starting point.

 

Now the question: is it possible for LilyPond to show control_point_values of ties?
 Let's say I have something like:

 

=====

\version "2.17.28"

{
c'1~ c'1
}

 

=====

 

and want LilyPond to show me all control points of that tie.

 

Is this viable?


Sure.  You'll notice that the function I sent works with the control points of each tie in the column,  Displaying them is straightforward:

{

\override Tie.after-line-breaking =

#(lambda (grob)

  (display (ly:grob-property grob 'control-points))

  (newline))

  c'1~ c'1

}

 


reply via email to

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