vote up 2 vote down star

I have an FAQ in HTML (example) in which the questions refer to each other a lot. That means whenever we insert/delete/rearrange the questions, the numbering changes. LaTeX solves this very elegantly with \label and \ref -- you give items simple tags and LaTeX worries about converting to numbers in the final document.

How do people deal with that in HTML?

ADDED: Note that this is no problem if you don't have to actually refer to items by number, in which case you can set a tag with

<a name="foo">

and then link to it with

<a href="#foo">some non-numerical way to refer to foo</a>.

But I'm assuming "foo" has some auto-generated number, say from an <ol> list, and I want to use that number to refer to and link to it.

flag

73% accept rate
I'm a little confused. You want the item numbers to be auto generated and have the links refer to the items? Why does it matter if the links refer to the numbers? If you move things around within the <ol>, the numbers get auto-updated. If you link to the item by using a ref or href attribute, it will always point to the actual item rather than the number. So where does the numbering come into play? – Anthony Aug 16 at 8:33
woops! not a ref attribute. a rel attribute. – Anthony Aug 16 at 8:35
For example, I want to the final text that the user reads to say something like "as explained in Question 7, blah blah". – dreeves Aug 16 at 11:26
2  
Consider for a moment that it takes two passes over the source for LATeX to achieve this trick. – dmckee Aug 16 at 14:19

4 Answers

vote up 6 vote down check

There is nothing like this in HTML.

The way you would normally solve this, is by having the HTML for the links generated, by either parsing the HTML itself and inserting the TOC (you can do that on the server, before you send the HTML out to the browser, or on the client, by traversing the DOM with a little piece of ECMAScript and simply collecting and inspecting all <a> elements) or generating the entire HTML document from a higher level source like a database, an XML document, markdown or – why not? – even LaΤΕΧ.

link|flag
vote up 1 vote down

Instead of \label{key} use <a name="key" />. Then link using <a href="#key">Link</a>.

link|flag
But this doesn't generate the actual numbers, does it? – dreeves Aug 16 at 8:03
vote up 2 vote down

I know it's not widely supported by browsers, but you can do this using CSS counter. Also, consider using ids instead of names for your anchors.

link|flag
vote up 0 vote down

PrinceXML can do that, but that's about it. I suppose it'd be best to use server-side scripting.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.