Am 21.07.2016 um 03:14 schrieb Andrew Bernard:
How can one make a laissez vibrer tie dotted or dashed, as can be done for
a normal tie? Using \tieDotted has no effect.
This is because \tieDotted is a shorthand for
  \override Tie.dash-pattern = #'((0 1 0.1 0.75))
and laissez vibrer ties are not Tie grobs but LaissezVibrerTie grobs. There is no shorthand laissezVibrerTieDotted but you can use this override or create such a shorthand.
%%%%%%%%%%%%%%

\version "2.19.44"

{
  \override LaissezVibrerTie.dash-definition = #'((0 1 0.1 0.75))
  b\laissezVibrer
}

laissezVibrerTieDotted = \override LaissezVibrerTie.dash-definition = #'((0 1 0.1 0.75))
{
  \laissezVibrerTieDotted
  b\laissezVibrer
}

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to