8

Sometimes I want to \input some LaTeX code, which belongs to a standalone LaTeX file.

I would like to input the part between \begin{document} and \end{document}, while skipping the other part.

Hongying
  • 569

1 Answers1

13

This is exactly the purpose of the docmute package. Another one with more options is the package and document class standalone.

Tomek
  • 1,588
  • 5
    For this you only need to load the standalone package and then simply \input the other file. The standalone class is not required, but useful for the other file if it is a diagram or similar which you want to compile on its own with minimal borders. – Martin Scharrer Jun 27 '11 at 10:41