Re: [tablatures] Avoid fingering on score when tab exists in chord |
[ Thread Index |
Date Index
| More lilynet.net/tablatures Archives
]
- To: tablatures@xxxxxxxxxxx
- Subject: Re: [tablatures] Avoid fingering on score when tab exists in chord
- From: Marc Hohl <marc@xxxxxxxxxx>
- Date: Thu, 23 Jan 2014 10:01:03 +0100
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; t=1390467664; l=596; s=domk; d=hohlart.de; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:References: Subject:To:MIME-Version:From:Date:X-RZG-CLASS-ID:X-RZG-AUTH; bh=MQ7IcO1+v8Zmg8FE8Jyq7PA3ODU=; b=HnynaxzOeXFNnm3/gTMrz7Hs57AyrA+EAXiaPE4c3YCXrNI38fb3KkmR8yk3nU5YRh/ n4EW7w/hhS48xc4kJc4ylbeiGJkfrApV2w78c9W+nwbM8I17x8UjNCSzt0SzJyI+7N7v2 FG/c6p41JTD2vtxsDPd3htPdI7Pb+KTaF3w=
Am 23.01.2014 06:31, schrieb Federico Bruni:
[...]
\version "2.16.2"
music = \relative c' {
<f\4 as\3>8 c
}
\score {
\new StaffGroup <<
\new Staff <<
\context Voice { \clef "G_8" \music }
>>
\new TabStaff <<
\context TabVoice { \clef "moderntab" \music }
>>
>>
}
\layout {
\context {
% Do not display string numbers on Staff (I use TabStaff also)
\Staff
\override StringNumber #'stencil = ##f
}
}
Why not using 2.18?
Then you may write as well
\layout {
\context {
\Staff
\omit StringNumber
}
}
Marc