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?
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?
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.
preview and crop option of standalone package. More about it here: http://tex.stackexchange.com/q/63045/3235
– percusse
Jul 12 '12 at 22:08