Skip to main content

A Python module to speed up TeX compilation.

Project description

tex-fast-recompile

A Python module to speed up TeX compilation.

This is similar to mylatexformat TeX package that it works by "speed up" some "preamble", but unlike using "precompiled preamble" i.e. custom TeX format, this package works with every package including package that executes some Lua code, or load OpenType font.

Installation

It can be installed from PyPI or GitHub:

You also need to install the helper TeX package fastrecompile.sty, which can be found in the tex/ directory. Refer to https://tex.stackexchange.com/q/1137/250119 for installation instruction.

(currently the TeX package is not available on CTAN)

Usage

If installed properly, an executable tex_fast_recompile should be available on your command-line.

Run tex_fast_recompile --help to view the available options.

For example you can use it as follows:

tex_fast_recompile pdflatex a.tex

to compile a.tex to a.pdf and automatically watch it on changes.

Limitations

  • SyncTeX features of the text part in the "preamble" may not be correct. (if you're not sure what this mean, you should be safe. But see the "Extra note" section below)
  • The preamble must not be changed. Furthermore, any file \input in the preamble must not be changed. (obviously)
  • You must not read from the terminal anywhere in the preamble, such as with functions \read -1 to ... or \ior_get_term:nN .... (if you're not sure what this mean, you should be safe)

Extra note

If you want to read the log file, refer to the help of --copy-log option.

It's possible to print out some content in the "preamble" part, but if you do so...

\documentclass{article}
\usepackage{fastrecompile}  % add the package here
% other preamble lines...
\begin{document}

123
\clearpage
\fastrecompileendpreamble
456

\end{document}

you must also use the --copy-output option if you want to view the resulting PDF.

--no-add-package mode

Behind the scene, some magic is done on your TeX file.

If you want to do that manually, you need to modify your TeX file as follows:

\documentclass{article}
\usepackage{fastrecompile}  % manually add the package here
% other preamble lines...
\begin{document}

% put the line below where the preamble ends:
\fastrecompileendpreamble

...

\end{document}

then compile your document with --no-add-package flag added.

Note that:

  • \fastrecompileendpreamble must appear exactly once in the main file.
  • There must be nothing else on the line that contains \fastrecompileendpreamble.

How does it work?

The principle is very simple. Notice that while the user want fast refresh, the file does not change very frequently.

As such, we start the compiler before the file has changed to process the "preamble", then when the file changed we continue processing the rest of the file.

A graph for illustration:

Before:

(each * represents a file change, |--.--| represents a compilation where the . marks where the preamble processing is done)

+----------------------------------------------------> Time
     *          *                *           *
     |--.--|    |--.--|          |--.--|     |--.--|

After:

+----------------------------------------------------> Time
     *          *                *           *
     |--.--|--. --|--.           --|--.      --|

It can be easily seen that after the change, it only takes 2 instead of 5 time units from when the file is saved to when the change is reflected in the PDF.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tex-fast-recompile-0.3.0.tar.gz (15.9 kB view details)

Uploaded Source

Built Distribution

tex_fast_recompile-0.3.0-py3-none-any.whl (13.3 kB view details)

Uploaded Python 3

File details

Details for the file tex-fast-recompile-0.3.0.tar.gz.

File metadata

  • Download URL: tex-fast-recompile-0.3.0.tar.gz
  • Upload date:
  • Size: 15.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for tex-fast-recompile-0.3.0.tar.gz
Algorithm Hash digest
SHA256 f010f5c3ae2603f1d53ed6d3b349f89bf8521d94be6acfe36fdf3d443e951322
MD5 06b26fe72c805d1103d24cbe726a9f9e
BLAKE2b-256 f3b57e3289d6c8389074da301fb3490605f5efd58a88aaa7ae3fa8a921637f8a

See more details on using hashes here.

File details

Details for the file tex_fast_recompile-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for tex_fast_recompile-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 da1b0f0664cda2ddc103d611d11a41e3f821ce2799947b1937024289724c18cf
MD5 b3ab1e790c74cc8012032f186c046216
BLAKE2b-256 a88001643306aefce83e262d321ef3702600cd95e818821b29b4c20ead1fdd25

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page