You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
\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!).
The text was updated successfully, but these errors were encountered:
\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 ofwidth:0.0pt
. Just try the following: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 withwhite-space: nowrap
.Note also that the
\parident=0pt
should not be necessary... the LaTeXML CSS addstext-indent
even inside the boxes created by\hbox
(I am too lazy right now to create another issue!).The text was updated successfully, but these errors were encountered: