Am 01.04.2018 um 17:00 schrieb Andrew Bernard:
I cannot recall where I obtained this code from. But I want to have the
line thicker. I don't know how to modify this. Grepping the lilypond
installation I am unable to find the function make-draw-line-markup.
Where does that come from? Can I use another function that takes a
thickness as an additional parameter?
The function make-draw-line-markup is the markup command draw-line that
can be used as
#(make-draw-line-markup '(0 . 1))
or
\markup \draw-line #'(0 . 1)
or
#(markup #:draw-line '(0 . 1)
Same for all other markup commands.
So you can just replace the line
(make-draw-line-markup '(0 . 1)))
in your original code by
(make-override-markup '(thickness . 3)
(make-draw-line-markup '(0 . 1)))))
or by
(markup #:override '(thickness . 3)
#:draw-line '(0 . 1))))
or by
#{ \markup \override #'(thickness . 3)
\draw-line #'(0 . 1) #}))
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user