I am (losing my mind) trying to convert a TeX file to a Word with latex2rtf. The body translates well, but the tables don't. I use a lot of cross-references and out like to maintain them.
My solution is to push the tables to the end of the document. I'd like to go further and suppress table output, but keep the cross-references. This would be one less step in my conversion process because I wouldn't have to cut the bad tables out of the Word document before appending back the good tables made outside of LaTeX.
I tried the comment environment from the verbatim package, but this doesn't work because the cross-references don't survive. Is this possible? Or should I just accept that I can't script everything? Thanks!
\documentclass[12pt]{article}
\usepackage{verbatim}
\begin{document}
I would like to reference Table \ref{tab:1}, which is pushed to the end of
the paper with a {\tt clearpage} and commented out because it doesn't convert
correctly in {\tt latex2rtf} and I will find a solution outside of \LaTeX.
\clearpage
\begin{comment}
\begin{table}
\centering
\begin{tabular}{ l c r }
1 & 2 & 3 \\
4 & 5 & 6 \\
7 & 8 & 9 \\
\end{tabular}
\caption{This table is my white whale.}
\label{tab:1}
\end{table}
\end{comment}
\end{document}
Edit: FWIW, my main problem with the tables in latex2rtf seems to be ifmmode macros, which cause frequent crashes.

\subcaption,\ContinuedFloat, and\phantomcaptioncalledoutside of float. – Richard Herron Sep 13 '13 at 17:01