Is it possible to put two tables next to each other, which are in separate .tex files, and added to the document via \input? If it's not, I could also create just the 'raw' contents of the tables, i.e. just the rows and columns by using the content.only command of xtable.
Assume I got the following table TWO times, saved as two separate tex files:
\begin{table}
\begin{tabular}{lYY}
\toprule
& \multicolumn{1}{c}{$N_1$} &
\multicolumn{1}{c}{$N_2$} \\
\midrule
\multicolumn{1}{l}{$S_1$} & 0.14 & -1.243 \\
\multicolumn{1}{l}{$S_2$} & 0.217 & 4.132 \\
\multicolumn{1}{l}{$S_3$} & 7.350 & -9.913 \\
\multicolumn{1}{l}{$S_4$} & 0.132 & 6.664 \\
\bottomrule
\end{tabular}
\end{table}
Can I put these next to each other by using input? I know you need to utilize the minipage environment somehow, but I don't know if this works in combination with include. I could not make it work in some tests.
If include doesn't work, I might create just the content to put it inside the minipage environment at the right positions. Either way, please help me with the code. Thanks!

\includealways makes a new page and is designed for including things like whole chapters. To input a fragment such as a table you want\input. You can input two tabular side by side using\inputinto the sametableYou do not need minipage – David Carlisle Dec 01 '13 at 19:27inputsomehow in the minipage environment? (also edited the Question. I meant input, my bad for calling it include) – TomM Dec 01 '13 at 19:32\inputmore or less anywhere, but minipage won't obviously help (as you can not put a table environment in a minipage) – David Carlisle Dec 01 '13 at 19:33