lilypond-user
[Top][All Lists]
Advanced

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

Re: Upline articulation


From: Malte Meyn
Subject: Re: Upline articulation
Date: Sun, 1 Apr 2018 18:11:13 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0



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) #}))




reply via email to

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