atom feed1 message in org.oasis-open.lists.docbook-appsDOCBOOK-APPS: xrefs to labelled table...
FromSent OnAttachments
Chris NettletonApr 27, 2001 1:03 pm 
Subject:DOCBOOK-APPS: xrefs to labelled tables in docbook-xsl-1.37
From:Chris Nettleton (nett@ccfn.demon.co.uk)
Date:Apr 27, 2001 1:03:52 pm
List:org.oasis-open.lists.docbook-apps

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.