I have two source files main.tex and A.tex.
Each file is standalone, so pdflatex main.tex gives main.pdf and similarly A.tex -> A.pdf.
My goal is to put what is in A.pdf in certain position in main.pdf.
Using the answer I got for my previous question:
http://www.latex-community.org/forum/vi ... =45&t=9655
I manage to use the textpos package like this:
Code: Select all
\begin{textblock}{2}(2.1,4.6)
\includegraphics[scale=1.4]{A.pdf}
\end{textblock}]
My question:
-------------
Can I avoid creating A.pdf, cropping it and somehow convince latex to take A.tex and do the same ?
After all A.pdf was generated by Latex to begin with, so there should be someway to do something like this:
Code: Select all
\begin{textblock}{2}(2.1,4.6)
\specialcommand[scale=1.4]{A.tex}
\end{textblock}
I would appreciate any idea.
thanks.