LaTeXML
LaTeXML copied to clipboard
\llap does not shift to the left, creates newlines
\llap is supposed to put its content to the left of the current position, but the HTML generated by LaTeXML does not do that. The resulting box will also pile all text in a column because of width:0.0pt. Just try the following:
\parindent=0pt
Sufficiently long text \llap{with overlap}
The overlap direction can be fixed with direction:rtl;; to be safe, one must also create a further wrapper which restores the intended direction. The characters piling up can be fixed with white-space: nowrap.
Note also that the \parident=0pt should not be necessary... the LaTeXML CSS adds text-indent even inside the boxes created by \hbox (I am too lazy right now to create another issue!).