When I trying to change TabStaff.minimumFret to 3 there is 0 fret for all notes, that can be on 0 fret.
\version "2.17.9"
\language "deutsch"

musicForBass = \relative c {
  \tempo 4 = 90
  \set TabStaff.minimumFret = #3
  g4 f e d c h a g
}

bassStaff = 
  \new Staff {
    \set Staff.instrumentName = #"Bas Guitar"
    \set Staff.midiInstrument = #"electric bass (finger)"
    
    \new Voice {
      \clef "bass_8"
      \musicForBass
    }
  }
    
\score {
  \new StaffGroup <<
    \bassStaff
    \new TabStaff {
      \set TabStaff.stringTunings = #bass-tuning
      \musicForBass
    }
  >>
  \layout{}
}

_______________________________________________
bug-lilypond mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to