Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

2
  • if you are looking for ways to speed up your compiling time even beyond using tike' externalize capabilities (see Mark Everitt's answer), checkout my answer to this question. Here I explain how to precompile the preamble, so that it doesn't need to be compiled on every run. This has reduced the compiling time of my documents to < 1s for medium sized documents (~20 pages). Also, you could look into splitting up your document using \include and \includeonly, which allows you to split up a document and only compile a part of it in a sensible way. Commented Mar 6, 2012 at 8:49
  • As Werner already answered, you can use the standalone class and package. The package provides a \includestandalone{file} which can insert either a file.pdf or file.tex. It can even compile the PDF from the standalone TeX file once and then use the PDF. This speeds things up very much (My thesis drops from 120s to 20s). Commented Apr 24, 2012 at 19:31