add dottedExtender
This commit is contained in:
parent
04a01d3b3f
commit
a0e70b4c4b
@ -193,4 +193,22 @@ updown =
|
|||||||
\tag #'up { \markup { #(string-capitalize word) } }
|
\tag #'up { \markup { #(string-capitalize word) } }
|
||||||
\tag #'down { \markup { #(string-downcase word) } }
|
\tag #'down { \markup { #(string-downcase word) } }
|
||||||
}
|
}
|
||||||
#})
|
#})
|
||||||
|
|
||||||
|
dottedExtender = {
|
||||||
|
\override LyricExtender.style = #'dotted-line
|
||||||
|
\override LyricExtender.thickness = 2
|
||||||
|
\override LyricExtender.Y-offset = 0.1
|
||||||
|
\override LyricExtender.stencil =
|
||||||
|
#(lambda (grob)
|
||||||
|
(let* ((stil (ly:lyric-extender::print grob))
|
||||||
|
(nostil (null? stil))
|
||||||
|
(x-ext (if nostil 0 (ly:stencil-extent stil X))))
|
||||||
|
(if nostil
|
||||||
|
stil
|
||||||
|
(make-connected-line
|
||||||
|
(list
|
||||||
|
(cons (car x-ext) 0)
|
||||||
|
(cons (cdr x-ext) 0))
|
||||||
|
grob))))
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user