Hi,
I'm using docbook-xsl-1.37/html/chunk.xsl.
I'd offer a fix, but being 99% new to the XSL stylesheets, I'm lost somewhere
near xref.xsl:51.
Here's the problem:
-------------------
I have a table with a given label.
<table frame="topbot" pgwide="1" label="V" id="tablev">
<title>Addressing Modes and Instruction Formats</title>
When translating to HTML, I get (correctly) a table called "Table V":
<a name="tablev"></a>
<b>Table V. Addressing Modes and Instruction Formats</b>
However, xrefs to the table are (incorrectly) translated to "V".
<para><xref linkend="tablev"/> specifies ...
is translated as :
<p><a href="V#N117a" title="V">V</a> specifies ...
TIA for any assistance.