I'm doing graphics using PStricks, writing each figure in it's own sub-file. I would like to order two of these figure vertically with a symbol in between.
To that end, I've tried using a tabular and arrays environments. This, however, produces and error, even when the sub-file is empty.
For PStricks, I compile using xelatex on Ubuntu.
A minimal working example is
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{tabular}{ccc}
\include{test} & b & c\tabularnewline
\end{tabular}
\end{frame}
\end{document}
Here, the error is produced at \end{frame}. test.tex is empty and is in the same folder as the main file.
Is there away to solve this problem?
\inputinstead of\include, see e.g. tex.stackexchange.com/questions/246/… – Torbjørn T. Aug 14 '12 at 10:32