Tagged Questions
7
votes
0answers
63 views
Speeding up compilation using precompiled preamble with LuaTeX
Compiling my documents with lualatex takes quite long. I have a complex preamble, and noticed it takes long to process this part of the file.
Today I came across this website, which proposes a trick ...
5
votes
0answers
108 views
Need commands for creating manual “pre-compile” of preamble in Windows, perhaps by pressing a button
I would like to manually create a separate file with preamble "pre-compiled". I found a very simple example at:
ultrafast pdflatex with precompiling
where Jonas Stein describes their example:
...
5
votes
1answer
130 views
Tool to handle “precompiling the preamble” automatically
On Windows there is a nice little tool called latexdaemon that can handle "precompiling the preamble" (and thus speeding up compilation) automatically. It doesn't require any additional setup: one ...
16
votes
1answer
641 views
ultrafast pdflatex with precompiling
I try to improve the time pdflatex needs to compile my book.
Really working example
book.tex
%&preamble
\begin{document}
Hi
\end{document}
and
preamble.tex
\documentclass{article}
I run ...