Re: [tablatures] Re: Could I get a critique on my first lilypond tab? |
[ Thread Index |
Date Index
| More lilynet.net/tablatures Archives
]
- To: phorgan1@xxxxxxxxx
- Subject: Re: [tablatures] Re: Could I get a critique on my first lilypond tab?
- From: Federico Bruni <fedelogy@xxxxxxxxx>
- Date: Sun, 24 Apr 2011 09:40:57 +0200
- Cc: tablatures@xxxxxxxxxxx, Mailinglist lilypond-user <lilypond-user@xxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:subject:from:to:cc:in-reply-to:references :content-type:date:message-id:mime-version:x-mailer :content-transfer-encoding; bh=7J4xoedARHN70rTn1d5jZ0/OYCs58tbE6P77dagFbDQ=; b=bzOTY0r7T/cmqmB3BKFhukDXO7pYw7cEPxMNvNYcUJ8BbVS1lQqx3LwWu81fyrhwXV kFYqjx2bl2Xl6/6uNjVdWbtk58Wl0VgDNg/6vIwm9U8HemgETlZz5k8sID7yTQ08X3mh U1KVV/X7kEApzYQPbBhHIUhP3A8oSjdyWmhU8=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:cc:in-reply-to:references:content-type:date :message-id:mime-version:x-mailer:content-transfer-encoding; b=nLz59BeA6NxmaZflSgZzI6d8kv5q+n8nohgMFXhcB0mU3JFChPTocFWkovPFmzPd7w v1mzpv4Zn42x0JL8F50MOs7tWPtpV/GiL0lHSxObpI0dj9MOygCqR0fJ2tAkYy7Hn14C oYONrny4942J2lKo+ZfuVoXnBi7o7chQoQLDw=
Il giorno sab, 23/04/2011 alle 12.13 -0700, Patrick Horgan ha scritto:
> On 04/23/2011 02:50 AM, Federico Bruni wrote:
> > Il giorno sab, 23/04/2011 alle 02.36 -0700, Patrick Horgan ha scritto:
> >> I figured it out. It was the Text_engraver I needed. So I'm
> >> attaching
> >> a new version that has H in the appropriate place. Please let me know
> >> if there are better/more elegant ways of doing the things I do here.
> > New version? It looks like the previous file :-)
> I added the Text_engraver to the TabStaff, so now the "H"s show up.
> That's the only change, but the output suddenly became closer to what I
> want, although I'd really rather have the "H"s show up above the slurs.
>
Oh sorry, I missed that.
Anyway, "H"s actually **showed up** in your previous file because you
used \tabFullNotation. So you can comment out the Text_engraver and put
again \tabFullNotation:
\new TabStaff % \with { \consists "Text_engraver" }
<<
\context TabVoice = "hammersNpulls" { \tabFullNotation
\hammersNpulls }
"H"s will show up again.
You put the hammers in the TabVoice context: default tablature removes
markup, that's why you need \tabFullNotation.
If you search tabFullNotation definition in
usr/share/lilypond/current/ly/property-init.ly you'll see:
\revert TabVoice.TextScript #'stencil
If you comment out this line and run again the code above "H"s will
disappear again.
HTH,
Federico