bug-lilypond
[Top][All Lists]
Advanced

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

fret value 0 in place-fret leads to unwanted capo indication in fret dia


From: pls
Subject: fret value 0 in place-fret leads to unwanted capo indication in fret diagrams
Date: Sun, 25 Oct 2015 20:00:48 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux)

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




reply via email to

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