Hi,
\override VoiceFollower #'style = #'dotted-line'
Here is the mistake: The ' before dotted-line is not a quotation mark
that needs a twin. It's just #'dotted-line oder #'dashed-line.
Also, in recent versions, there is the following more convenient syntax:
\override VoiceFollower.st
Hi,
\override VoiceFollower #'style = #'dotted-line'
Here is the mistake: The ' before dotted-line is not a quotation mark
that needs a twin. It's just #'dotted-line oder #'dashed-line.
Also, in recent versions, there is the following more convenient syntax:
\override VoiceFollower.st
I would like to change the staff switch line from solid to dashed or dotted.
I based the following example on a message that I found in the Lilypond mail
archive: https://www.mail-archive.com/lilypond-user@gnu.org/msg47036.html
When I compile this example, the line is still solid.
Is my syntax inc