Re: [tablatures] tremolos in tablature |
[ Thread Index |
Date Index
| More lilynet.net/tablatures Archives
]
- To: Patrick Schmidt <p.l.schmidt@xxxxxx>
- Subject: Re: [tablatures] tremolos in tablature
- From: Marc Hohl <marc@xxxxxxxxxx>
- Date: Mon, 23 Aug 2010 21:26:28 +0200
- Cc: tablatures@xxxxxxxxxxx, bug-lilypond@xxxxxxx
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; t=1282591593; l=1337; s=domk; d=hohlart.de; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:References: Subject:CC:To:MIME-Version:From:Date:X-RZG-CLASS-ID:X-RZG-AUTH; bh=wtSJN1k3fXE1mQRpjlrI0oDBVqA=; b=McNnmjRwmTl08tMY9W7RVUKntvdtOVlId7iSxddCdfx8jEXv2GkgSZagxxipK8PfZX5 jrIkzen1oQodBND21jFDiOeCngaFfHMMJmU2PCVqbRV4Fu3o3VSrrLzK22trGtCskObE2 lJuROKI6nCYC+woBlMdxQVE31lshEt4Ymxo=
Patrick Schmidt schrieb:
Hi all,
in the following example misplaced tremolos appear in tablature
without \tabFullNotation. With \tabFullNotation the symbols are placed
correctly but IMO in both cases the tremolo symbols are too massive in
tablature (see attached pngs).
\version "2.13.30"
music = {
<c e g c' e'>4:16
\stemUp
\repeat tremolo 4 c'16
\repeat tremolo 2 { c16 d }
\repeat tremolo 4 { <c d>16 }
}
\score {
<<
\new Staff {
\clef "treble_8"
\music
}
\new TabStaff {
%\tabFullNotation
\music
}
>>
}
This seems to be a bug.
Hi Patrick,
yes, of course. I didn't use tremolos very often while playing around with
the new tablature appearance which yielded to scm/tablature.scm, so
I overlooked this.
Workaround(s):
1) Use
\override TabVoice.StemTremolo #'transparent = ##t
That's great, I'll provide a patch within the next days.
The #'beam-thickness of the tremolo beams is defined in
scm/define-grobs.scm as .48 * staff space.
In ly/engraver-init.ly we have the staff space spread to 1.5 * staff
space, so it would be optimal to
define the #'beam-thickness in TabStaff being 0.48/1.5=0.32 to ensure
the tremolo beams are equal
in size for normal and tab staves.
What do you think?
Greetings
Marc