Hey all,
the following code produces an unwanted capo indication in the first
fret of the fret diagram (thick bar that covers all the strings):
\version "2.19.30"
\markup
\override #'(size . 5)
\override #'(fret-diagram-details . ((finger-code . in-dot)))
\fill-line {
\fret-diagram-verbose #`(
(place-fret 3 0)
)
}
Why didn't I use the official syntax e.g. /open 3/ to indicate an open
string? Because I wanted to place text inside the fingering indication
dots which is only possible via the place-fret command.
There is a way to get rid off this capo indication but it's only a dirty
workaround:
\markup
\override #'(size . 5)
\override #'(fret-diagram-details . ((finger-code . in-dot)))
\fill-line {
\fret-diagram-verbose #`(
(capo -1)
(place-fret 3 0 "g")
)
}
HTH,
Patrick
_______________________________________________
bug-lilypond mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-lilypond