When compiling a file with tex4ht, the sections are transformed with header HTML tags with anchor. So, if I compile
\documentclass{article}
\usepackage[xhtml,mathml]{tex4ht}
\begin{document}
\section{Hello}
\end{document}
with latex, tex4ht, I obtain the following html code
<h3>[...]<a id="x1-10001"></a>Hello</h3>
Is it possible to move the anchor tag to the end, and to make it non empty? Specifically, I would like something like:
<h3>[...]Hello<a class="anchor" id="x1-10001">ΒΆ</a></h3>
Is that possible?
\jobname.xref. This is very much used to track and cross-link various linkable items correctly even if the html output is split into several different files with\CutAt{...}command, the argument of which can by any logical sectional unit or chapter. – CV Radhakrishnan Oct 9 '12 at 23:58