Hi Andrew,

I find that \kill still breaks htlatex unless the "pic-tabbing" option
> is used.
>
> Since this mean that the text in a tabbing environment does not scale
> with the rest of the document, is this bug recorded and assigned to anyone
> ?


There are two issues. One is that LaTeX internals changed again, so our
redefinition of the \kill command produces an error. Another error is that
the tab stops produce wrong CSS code, so they are not indented at all. I've
fixed both issues in the TeX4ht sources, so the following MWE should work
after TeX Live update:

%%%%%%%%%%%%%%%%%%%%%
\documentclass{article}
\begin{document}
\begin{quote}
\begin{tabbing}
\texttt{df(y,x1,2,x2,x3,2)} \= = $\partial^{5}y/\partial x_{1}^{2} \
 \partial x_{2}\partial x_{3}^{2}.$\kill
\texttt{df(y,x)} \> = $\partial y/\partial x$ \\
\texttt{df(y,x,2)} \> = $\partial^{2}y/\partial x^{2}$ \\
\texttt{df(y,x1,2,x2,x3,2)} \> = $\partial^{5}y/\partial x_{1}^{2} \
 \partial x_{2}\partial x_{3}^{2}.$
\end{tabbing}
\end{quote}


\begin{tabbing}
Zero \=One \=Two \=Three\\
\>First tab stop\\
\>A\>\>B\\
\>\>Second tab stop
\end{tabbing}
\end{document}
%%%%%%%%%%%%%%%%%%%

Best,
Michal

Reply via email to