[Tex/LaTex] How to export a table

pngtables

I defined a table in LaTeX : \begin{tabular}....\end{tabular}.

Now i want to export that table to an image (PNG or something}.

It is possible? How can i do that?

Best Answer

The easiest way to do that would be to enclose your tabular in a document, with the standalone class.

\documentclass[a4paper, 11pt]{standalone}
\begin{document}

    \begin{tabular}{}

    \end{tabular}       

\end{document}

Then compile it with dvipng or use ImageMagick to convert the div into a png.

The credits go to Martin Scharrer.

Related Question