lilypond-user
[Top][All Lists]
Advanced

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

fretdiagram bug?


From: bb
Subject: fretdiagram bug?
Date: Fri, 8 Sep 2017 16:28:42 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1

I kindly ask the lilypond experts to check this code if I did a mistake or is it a bug?

Whatever I define in the line
\storePredefinedDiagram #default-fret-table \gSix
                        #allFourthsE
                        #"o,o,o,o,o"

lilypond will ignore!

Given is a questionable fretboard instead.

Please tell me where there is my error or if I should write a bug report.

Kind regards BB

START #####################

\version "2.19.2"

   allFourthsE =\stringTuning < e, a, d g c'>

gSix ={< e,\5 b'\4  d\3  g\2 d'\1 >1} %cegb

\storePredefinedDiagram #default-fret-table \gSix
                        #allFourthsE
                        #"o,o,o,o,o"

% end of potential include file /predefined-cuatro-fretboards.ly


%#(set-global-staff-size 27)

chordNames = \chordmode { g:6 }
notes = { \gSix \break  \bar "||" }
\score {
  <<
     \set Timing.defaultBarType = ""
     \new ChordNames {
      %\set chordChanges = ##t
      \chordNames
    }

    \new Staff {
        \clef "treble_8"
      \new Voice \with {
        \remove "New_fingering_engraver"
      }
      \relative c {
        \notes
      }
    }

    \new FretBoards {
      \set Staff.stringTunings = #allFourthsE
      \notes
    }

  >>

  \layout {
  }
}

END ################################


reply via email to

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