It takes ~15-30 seconds to run PDFLaTeX for my PhD thesis. This is killing my productivity.
Each included chapter is called, e.g., \include{theory}, and the relevant .tex file starts with the respective \chapter{Theory}.
A single change in one chapter causes PDFLaTeX to rebuild all chapters; this takes a long time. Does Kile have a built-in way to only "recompile" changed chapters, a la make on Linux, so I don't have to wait so long for minor edits?
Details:
- The thesis is only about 100 pages long so far.
- There are some large photos included (necessary for being able to zoom on specific features). The whole pdf is ~12 MB right now.
- Quickpreview returns with errors since I include graphics and .sty files (it works for very small snippets only).
- My project's main .tex file consists of only
\usepackagecommands,\includestatements and a handful of other commands (frontmatter,tableofcontents,backmatter, etc).
If I cannot fix this I will have to make ~5-10 separate projects for different chapters, then concatenate them all at the end. This is undesirable because there are cross-chapter label/references to images and other shared resources across chapters.
Has anybody come across this and solved the problem?
article, let alone do any work! – Joseph Wright Apr 01 '15 at 14:25\includeonly{filename}to compile just oneincluded file. – Torbjørn T. Apr 01 '15 at 14:31\includeonlyexists (e.g., me 1 hour ago). Thoughts? – user1717828 Apr 01 '15 at 15:05[draft]option on either the\documentclassor the relevant\usepackageline for graphics. by "suppress" i mean that the image itself won't be included, but that the proper space is left, with the name of the file printed as a place marker. – barbara beeton Apr 01 '15 at 16:48shareeditdeleteflag). – user1717828 Apr 01 '15 at 17:49draftso i did, because you specifically mentioned large graphics. – barbara beeton Apr 01 '15 at 18:12