Hello;

I assume tex4ht does not support minipage? due to semantics
of what a "page" is for HTML? Just wanted to make sure.

I tried this small example, in order to place 2 items
side-by-side on a "page".  With pdflatex, the
output shows them side-by-side but the HTML shows
them on top of each others.

I can get the same effect (side-by-side) by other means,
using a table with one row and two columns and make each
item in separate column, or by using the new support added
with \begin{multicols}{2} which works well for this case
also.

So, I am just really asking if minipage is not supposed
to work or may be I am overlooking some option I need
to configure to make this work in tex4ht.

Here is the small example:

---------------------------------
\documentclass{article}
%\usepackage[demo]{graphicx}
\usepackage{graphicx}
\usepackage{capt-of}

\begin{document}

\begin{figure}[htbp]
 %
 \begin{minipage}{0.4\linewidth}
  some text that should show up
  to the left side of the following image
 \end{minipage}
%%
 \begin{minipage}{0.5\linewidth}
  \centering
  \includegraphics[width=\textwidth]{foo.png}
  \captionof{figure}{result of the above}
 \end{minipage}
 %
\end{figure}
\end{document}
------------------------

htlatex foo.tex
pdflatex foo.tex

Any image foo.png is needed before running the above
to make it compile, as tex4ht did not work with
\usepackage[demo]{graphicx} and an actual image is
needed to see the effect.

Using texlive 2013

thanks,
--Nasser

Reply via email to