<div dir="ltr"><div><div><div>Hi All,<br><br></div>Tagging $x+y\times c=f$ produces the output with operator space before and after for the characters + \times and =, I require the same output in HTML out also. Please help...<br><br></div>Regards,<br></div>MadYuv<br><div><div><div><br></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Mar 24, 2017 at 2:24 PM, Michal Hoftich <span dir="ltr"><<a href="mailto:michal.h21@gmail.com" target="_blank">michal.h21@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi MadYuv,<br>
<span class=""><br>
> In LaTeX output, I got roman output for the text "const." $dx/dt = +v_{0} =<br>
> {\rm const.}$, but the same text came in italic tag in HTML conversion, how<br>
> can I fix the same?<br>
<br>
</span>you can use $dx/dt = +v_{0} = {\mathrm{const.}}$., or<br>
\usepackage{amsmath} and \text instead of \mathrm. I think that \rm is<br>
deprecated for quite some time.<br>
<span class=""><br>
> And, inside enumerate environment, for any special number output, I've used<br>
> as \item[1$'$], and I require the text which are comes inside optional<br>
> square brackets in HTML file too, but currently this was omitted...<br>
<br>
<br>
</span>Regarding custom enumerate labels, the current configuration removes<br>
generated labels and relies on HTML rendering for numbering. If you<br>
want to use custom labels, you can try the following configuration<br>
file:<br>
<br>
<br>
\Preamble{xhtml}<br>
<br>
\def\finishpar{\ifvmode\<wbr>IgnorePar\fi\EndP}<br>
\ConfigureList{enumerate}<br>
   {\finishpar\HCode{<div class="myenumerate">}\ShowPar%<br>
    \bgroup%<br>
    \def\EndDefItem{}%<br>
   }<br>
   {\finishpar\EndDefItem\egroup%<br>
     \finishpar\HCode{</div>}\<wbr>ShowPar\par%<br>
   }<br>
   {\finishpar\EndDefItem\HCode{<<wbr>div class="myenumitem"><span<br>
class="myenumhead">}%<br>
   \def\EndDefItem{\HCode{</div>}<wbr>}%<br>
 }<br>
   {\HCode{</span>}\par}%<br>
<br>
\Css{  .myenumitem .myenumhead{<br>
float: left;<br>
clear: left;<br>
width: 40px;<br>
font-weight: bold;<br>
}}<br>
<br>
\Css{.myenumitem p {margin-left:45px;}}<br>
<br>
\begin{document}<br>
<br>
\EndPreamble<br>
<br>
<br>
Best regards,<br>
Michal<br>
</blockquote></div><br></div>