Is it possible to use tabularx inside a longtable environment?
If not, is there any way I can get the "X" funcionality of tabularx with the option of long tables ---In order for me to be able to break them in two pages? Using longtabu is not an option, as stated by @jon here:
I would recommend staying away from
tabuas the package author is still fiddling with things and explicitly promised that there would not be backwards compatibility. See here for the discussion.
UPDATE:
Using the package ltxtable suggested by @Alan Munn (Writeen by @David Carlisle) I have the current Minimal Non-Working Example
Main File:
\documentclass{article}
\usepackage{array}
\usepackage{tabularx}
\usepackage{longtable}
\usepackage{ltxtable}
\begin{document}
Hello.
\LTXtable{\textwidth}{VersionOne}
\end{document}
Where the file VersionOne goes:
\begin{longtable}{XX}
\caption{A very long table}\\
WHO & \hspace{5mm} World Health Organization\\[1mm]
GDP & \hspace{5mm} Gross Domestic Product\\[1mm]
PPP & \hspace{5mm} Purchasing Power Parities\\[1mm]
\label{tab:LongtableOne}
\end{longtable}
When I try to run this code, I get a Emergency Stop and a fatal error. Am I writing this correctly?


ltxtablepackage by David Carlisle which combines the capabilities of both. – Alan Munn Apr 02 '13 at 04:54\LTXtable{\textwidth}{name-of-file-with-table}– David Carlisle Apr 02 '13 at 15:49tabularxenvironment? – Mario S. E. Apr 02 '13 at 16:10captionyou need a line break.\caption{A very long table}\\This is the special behaviour oflongtable– Marco Daniel Apr 02 '13 at 17:27