lilypond-user
[Top][All Lists]
Advanced

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

Re: Left Hand Fingerings on Guitar Tab


From: Malte Meyn
Subject: Re: Left Hand Fingerings on Guitar Tab
Date: Wed, 6 Apr 2016 21:32:37 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.6.0


Am 06.04.2016 um 21:20 schrieb Jay Vara:
I am trying to add left hand fingerings to the Tablature without affecting
the staff.  […]
Is there a way to suppress the fingerings on the staff and have it show up
only in the Tablature?


Instead of markups you should use fingerings like in
  c-1 c d-3 g-3
These appear in Staff but not in TabStaff by default. Now use
  \consists Fingering_engraver
for the TabStaff and
  \omit Fingering
for the Staff (I’m not sure why \remove Fingering_engraver doesn’t work here).

Complete code:

%%%%%%%%%%%%%%%

\version "2.19.38"
% works also in 2.18.2 so probably 2.19.15 is no problem either

myMusic = \relative c'' {
  c-1 c d-3 g-3
}

\score {
  <<
    \new Staff \with {
      \omit Fingering
    } {
      \myMusic
    }
    \new TabStaff \with {
      \consists Fingering_engraver
    } {
      \tabFullNotation
      \transpose c'' c' \myMusic
    }
  >>
}

%%%%%%%%%%%%%%%



reply via email to

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