SpiX 🦜 Yet another TeX compilation tool: simple, human readable, no option, no magic
SpiX is yet another compilation tool for .tex files. It aims at being simple and human readable. Every piece of configuration is written in the .tex file itself, in a clear format (a list of console commands).
Why SpiX?
With SpiX, the compilation process of a .tex file (Is it compiled using latex? pdflatex? xelatex? lualatex? Should I process its bibliography? with bibtex or biber? Is there an index?) is written in the .tex file itself, in a human-readable format (a shell script). That way:
- when you want to compile two years later, you don't have to guess the compilation process;
- you can send the
.texfile to someone, and that's it: no need to send detailed instructions or a Makefile along with it (everything is in the.texfile); - the compilation process is human readable: it can be understood by anyone who is able to read a very basic shell script. In particular, one can read it even if she does not know SpiX.
The .tex file
Write the compilation process of your .tex file as a shell script, before the preamble, as lines starting with %$:
% Compile this file twice with lualatex.
%$ lualatex foo.tex
%$ lualatex foo.tex
\documentclass{article}
\begin{document}
Hello, world!
\end{document}
You can also replace the file name with $texname. That way, you don't have to worry about the file name when writing your commands.
% Compile this file twice with lualatex.
%$ lualatex $texname
%$ lualatex $texname
Compilation
To compile the .tex file, run SpiX:
spix foo.tex
Spix will parse the .tex file, looking for shell snippets (lines before the preamble starting with %$), and run them.
That's all!
Documentation
The complete documentation is available on readthedocs.
To compile it from source, download and run:
cd doc && make html
What's new?
See changelog.
Download and install
-
The preferred way to get
SpiXworking is by using your distribution package manager. With Debian (and Ubuntu, and surely other distributions that inherit from Debian), it is in packagetexlive-extra-utils(since version 2020.20210202-3)::sudo apt install texlive-extra-utils
-
Otherwise, you can install SpiX using pip:
python3 -m pip install spix
-
Other installation methods can be found in the documentation.
License
Copyright 2020-2025 Louis Paternault
SpiX is licensed under the Gnu GPL 3 license, or any later version.
Release files for spix 1.5.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| spix-1.5.1.tar.gz | 1.2 MB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| spix-1.5.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 1.2 MB
Release files / spix-1.5.1.tar.gz
| Download URL | spix-1.5.1.tar.gz |
|---|---|
| Size | 1.2 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
1ac38dbcc8e76aec0aa1ab8b484a2df3abf083191df7c123c1d5ad140bf78c52
|
|
BLAKE2b-256 checksum How to use checksums |
c95a9538e2719a107972132d6da567b3f52bdf1a09189853566e820b2a356c7d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.9
|
Release files / spix-1.5.1-py3-none-any.whl
| Download URL | spix-1.5.1-py3-none-any.whl |
|---|---|
| Size | 18.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
e03455a0cbfdc03b18df1cd272b6f437d183fa1d104ef7c28efa29c6fe162d51
|
|
BLAKE2b-256 checksum How to use checksums |
0cf07925e15373eb75adccb8460317343b4f767ffbfd107bf43511d76449bb72
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.9
|