I want to be able to print the same document on four A6 pages.
What is the best way to do this?
One idea that I have is to divide an A4 with a table and in each cell call
\input{documentFile}
Is there a better method? Perhaps something with minipage instead of table?
General ⇒ the same document four times
the same document four times
If you don't recycle, you're throwing it all away.
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
the same document four times
Hi mappo,
you could use the pdfpages package, call \includepdf with the nup option, see its documentation.
Stefan
you could use the pdfpages package, call \includepdf with the nup option, see its documentation.
Stefan
LaTeX.org admin
the same document four times
That will probably do it.
The document that is to be inserted is also a .tex file.
Will I have to compile it separately (so that it exists
"physically" on the HDD) before running the script with
the \includepdf command?
That way the project will have to consist of two complete
documents. As for now, there is only one document and
one other .tex file that gets \include:ed four times in a row.
Here "lista" refers of course to lista.tex which is the non-complete document.
The document that is to be inserted is also a .tex file.
Will I have to compile it separately (so that it exists
"physically" on the HDD) before running the script with
the \includepdf command?
That way the project will have to consist of two complete
documents. As for now, there is only one document and
one other .tex file that gets \include:ed four times in a row.
Code: Select all
\documentclass[a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage{setspace}
\newcommand{\hit}{\fbox{\begin{minipage}{.45\textwidth}\input{lista}\end{minipage}}}
\begin{document}
\centering
\hit \hit
\\
\hit \hit
\end{document}
If you don't recycle, you're throwing it all away.