I am new to LaTeX. I am trying to stack tables one on top of another but I seem to be having a problem doing that while including the geometry package. I am doing this in order to simulate very complex table structures that would otherwise be prohibitive using standard table definitions. Here are some of my requirements:
- The tables widths must be specified in cm.
- The tables must be arranged vertically and left aligned with each other.
- The tables must not have any gaps between them.
- The default page margins must go away.
- The tables must be tabularx objects in order to take advantage of its features.
Here is the code I am using for testing:
\documentclass[letterpaper]{article}
\usepackage[margin=1in, paperwidth=8.5in, paperheight=11in]{geometry}
\usepackage{tabularx}
\begin{document}
\noindent
\begin{tabularx}{13.25cm}{|l|}
\hline {Test One} \\ \hline
\end{tabularx}
\begin{tabularx}{13.25cm}{|l|}
\hline {Test Two} \\ \hline
\end{tabularx}
\begin{tabularx}{13.25cm}{|l|}
\hline {Test Three} \\ \hline
\end{tabularx}
\end{document}
This code will arrange the tables in some kind of two column array. When the geometry line is removed the tables will be arranged correctly, but I need this line in order to instruct LaTeX to give me control of the page margins.
In both cases there seems to be a 1 point gap between the tables which should not be there.
Any help is appreciated.

tabularxhere (there are no multi-lineXcolumns sotabularxis not doing anything.) You have specified that the page is 8.5in wide but the tables are 13.25cm which is more than half of that yet you say you want a two column layout? – David Carlisle Sep 25 '12 at 16:34