LaTeX that just works, without managing a full TeX installation.
Compile a paper, thesis, slide deck, or existing LaTeX project with one command. texMini provides a real TeX Live environment that assembles itself around the documents you build.
- Only the TeX you use. texMini starts with a compact foundation and installs packages only when your documents need them, so its shared TeX distribution stays no larger than your work requires.
- A repeatable setup. texMini is a versioned Python package. uv can run an exact release with its Python dependencies, while each texMini release pins the same TinyTeX starting point on every supported platform.
- Built for AI agents and automation. One noninteractive command produces concise, stable output, actionable errors, and reliable exit codes that AI agents, scripts, and CI can understand.
Install uv, open a terminal in your LaTeX project, and run:
uvx texmini paper.texYour PDF appears beside the source. Run the same command again whenever the document changes; texMini reuses its toolchain and build state to make later builds fast.
Install the command if you use it regularly:
uv tool install texmini
texmini paper.texpaper.tex ──▶ texmini ──▶ auto-detect + install what is missing ──▶ paper.pdf
texMini keeps a private TinyTeX runtime under ~/.texmini. It leaves any system-wide TeX installation alone and adds packages only when your projects need them.
It supports pdfLaTeX, LuaLaTeX, XeLaTeX, bibliographies, indices, glossaries, and nomenclatures through latexmk. Existing projects keep using ordinary LaTeX; no new document language or project configuration is required.
- All platforms: uv and internet access while texMini downloads its runtime or missing packages.
- Windows x86-64: no additional required system dependency.
- macOS and Linux: Perl, which is usually already installed. texMini checks for it before downloading anything.
- Disk space: roughly 300–350 MB for the initial managed runtime under
~/.texmini, growing as documents need more packages. - Optional: GnuPG enables TeX Live repository signature verification. Without it, texMini shows an advisory and the build continues. Install GnuPG through Homebrew on macOS, your operating system package manager on Linux, or a Windows GnuPG distribution.
Running:
texmini paper.texcauses texMini to:
- Select
paper.tex, or find the unique top-level.texfile that declares a document class. - Recursively check local inputs, classes, and packages for required TeX files and build tools.
- Install the private TinyTeX runtime if it does not exist.
- Compile with managed
latexmkand pdfLaTeX. - Read a failed build for missing TeX files, resolve their TeX Live packages, and install them together.
- Continue installing and retrying while each round discovers a new package, with a 20-round safety ceiling.
- Write the PDF to the effective
latexmkoutput location and retain incremental build state by default.
For a path such as docs/paper.tex, texMini uses latexmk -cd, so sibling bibliographies, included files, logs, auxiliary state, and paper.pdf remain with the source. A root-level latexmkrc still loads and can configure the project.
Package mappings are cached in ~/.texmini/package-map.json. Package installation modifies only texMini's private TinyTeX tree.
The runtime metadata in ~/.texmini/TinyTeX/.texmini-runtime.json records its source release and artifact digest. texMini preserves existing managed runtimes because they may contain user-installed packages. Delete ~/.texmini/TinyTeX and run texMini again when you intentionally want to recreate it from the pinned baseline.
If a directory contains exactly one top-level .tex document, the filename is optional:
texminitexmini [install-tinytex] [--engine pdflatex|lualatex|xelatex] [OPTIONS] [document.tex] [refs.bib ...]
Examples:
texmini paper.tex
texmini docs/paper.tex
texmini --engine lualatex paper.tex
texmini --engine xelatex paper.tex
texmini --watch paper.tex
texmini --shell-escape minted-paper.tex
texmini -synctex=1 paper.tex
texmini --clean paper.tex
texmini --verbose paper.tex
texmini paper.tex references.bibOptions:
--engine ENGINE: selectpdflatex,lualatex, orxelatex.--clean: remove supported auxiliary files after a successful build.--watch: rebuild when project files change without launching a PDF viewer.-pvcis an alias.--shell-escape: permit the document to run external commands.-shell-escapeis an alias.--verbose: show complete TeX,latexmk, Biber, and package-manager output.--no-install: do not install missing TeX Live packages.--version: print the texMini version.
Arguments not handled by texMini are passed to managed latexmk. -view=none is accepted with watch mode, but texMini rejects options that would launch or control a viewer.
Prepare the managed runtime without compiling a document:
texmini install-tinytextexMini distinguishes the usual bibliography workflows and installs the required backend automatically:
\bibliography,\bibliographystyle, andnatbibuse BibTeX.- BibLaTeX uses Biber by default.
- BibLaTeX with
backend=bibtexuses BibTeX. - Missing local or TeX Live bibliography styles are resolved before a retry.
A traditional BibTeX document needs no special texMini option:
\usepackage{natbib}
\bibliographystyle{plainnat}
\bibliography{refs}texmini paper.texExplicit bibliography files are checked before compilation:
texmini paper.tex references.bibThe standard package workflows are integrated with latexmk: makeidx, imakeidx, glossaries, glossaries-extra, and nomencl. texMini installs MakeIndex, makeglossaries, or Xindy when the source selects them and reruns the document until the generated material is current.
texmini indexed-paper.tex
texmini glossary.tex
texmini nomenclature.texProject latexmkrc rules remain authoritative. This lets publisher templates replace texMini's built-in glossary and nomenclature rules when needed.
texMini includes Pygments and can install the minted TeX package, but it never grants external command execution implicitly. A document using minted must opt in:
texmini --shell-escape paper.texShell escape lets TeX execute commands with the permissions of the current user or container. Use it only for documents and project files you trust. Without the option, texMini stops with a focused instruction instead of silently enabling execution.
Use watch mode while editing with a PDF viewer that already refreshes changed files:
texmini --watch paper.texThe familiar texmini -pvc paper.tex spelling is equivalent. texMini performs its normal package analysis, recovery, diagnostics, and incremental latexmk build after project source, bibliography, class, style, configuration, script, or image dependencies change. It keeps watching after ordinary LaTeX errors so saving a fix rebuilds the PDF.
Watch mode does not open or manage a viewer. It cannot be combined with --clean; incremental state is part of the continuous workflow. Press Ctrl-C to stop.
The default engine is pdfLaTeX. Projects can select LuaLaTeX or XeLaTeX through either common magic-comment form:
% !TeX program = lualatex% !TEX TS-program = xelatexPrecedence is explicit --engine, then TEXMINI_ENGINE, then the source directive, then pdfLaTeX. Unsupported directives produce a warning and use the configured or default engine.
texMini honors project latexmkrc settings and the short or long latexmk forms for output directories, auxiliary directories, and job names:
texmini -outdir=build -auxdir=aux -jobname=final paper.texThe corresponding long names are -output-directory, -aux-directory, and -jobname. Status messages, diagnostics, change detection, and cleanup use the effective layout reported by latexmk, including layouts configured in Perl rather than guessed from command-line text.
SyncTeX is available as an opt-in latexmk argument, including in watch mode:
texmini --watch -synctex=1 paper.textexMini does not enable it by default. --clean -synctex=1 removes the generated .synctex.gz file while preserving the PDF and sources.
By default, successful builds retain .aux, .bbl, .bcf, .fdb_latexmk, and related state so latexmk can avoid unnecessary work on the next invocation.
With --clean, texMini removes supported bibliography, index, glossary, acronym, nomenclature, minted-cache, SyncTeX, and ordinary LaTeX auxiliary files after a successful build. It preserves sources, bibliography files, local classes and styles, images, scripts, PDFs, and unrelated files. Failed builds always retain their logs and auxiliary files for diagnosis.
Normal builds show short, stable progress messages and suppress successful tlmgr, TeX, Metafont, Biber, and latexmk transcripts. Warnings that affect the finished document, including unresolved references and missing characters, remain visible.
texMini provisions its managed toolchain and runs the document's declared build. It does not repair the document or attempt to diagnose the full range of LaTeX errors. The diagnostic responsibility principle defines this boundary and how texMini surfaces ordinary TeX failures.
Use --verbose to stream complete subprocess output. On failure, the default output shows the primary LaTeX error and source line when available, points to the retained log, and warns when the failed invocation created or changed the PDF.
A PDF with missing characters or unresolved citations or references is an incomplete build. texMini retains the PDF and diagnostic files, prints the content-loss warnings beside the final result, and exits with a nonzero status.
texMini is noninteractive and uses stable status lines without spinners or terminal-only formatting. A successful build exits with zero; a failed build returns the underlying nonzero status, retains its log and diagnostic files, and prints the primary error near the end. Use --verbose for complete tool transcripts and --clean when an automation should remove supported auxiliary files after success.
This makes texMini friendly to scripts, CI, and AI coding agents without adding an agent-specific protocol: the same small CLI is used by people and automation.
A conventional TeX installation offers broad compatibility, but asks you to install and maintain an entire distribution. Tectonic offers an excellent self-contained build experience, but uses its own XeTeX-derived engine and cannot replace every traditional TeX engine and utility. TinyTeX provides the small, portable TeX Live foundation used here, while its most automatic missing-package workflow is normally accessed through R.
texMini combines conventional TeX compatibility with a disposable and portable command-line experience:
- Use the project you already have. Build ordinary
.texfiles with TeX Live andlatexmk. - Install only what the document needs. Missing classes, packages, fonts, bibliography styles, and Biber are resolved and installed automatically.
- Keep TeX contained. The managed runtime stays under
~/.texmini. - Remove it cleanly. Delete the managed directory; there is no system-wide installation to unwind.
| System | Existing LaTeX projects | Package handling | Installation and removal | Main compromise |
|---|---|---|---|---|
| texMini | Builds conventional projects with pdfLaTeX, LuaLaTeX, or XeLaTeX | Automatically detects and installs needed TeX Live packages and common build tools into a private runtime | Run with uvx; remove ~/.texmini to uninstall the runtime |
Arbitrary project-specific executables can require additional setup |
| Tectonic | Builds many projects, subject to its XeTeX-derived engine and build model | Downloads support files from a configured bundle | A single executable and a removable cache | It does not provide every engine and utility in conventional TeX Live |
| TinyTeX with R | Broad TeX Live compatibility | The R package can detect and install missing packages during compilation | A small, portable TeX Live directory | The automated workflow is coupled to R |
| TinyTeX from the shell | Broad TeX Live compatibility | Packages are managed directly with tlmgr |
A small, portable TeX Live directory | Compilation and missing-package repair are manual |
| TeX Live, MacTeX, or MiKTeX | Broadest conventional compatibility | Large package sets or distribution-specific package management | A conventional desktop or system installation | More disk usage and distribution administration |
| Overleaf | Builds projects supported by its hosted TeX environment | A large package set is supplied by the service | No local TeX installation | The build environment is remote and controlled by the service |
| Typst | LaTeX projects must be rewritten | Uses Typst packages rather than TeX Live packages | A simple executable and package cache | It is a different document language, not a LaTeX compiler |
Each texMini release packages a manifest that pins the TinyTeX release, official platform filenames, and SHA-256 digests. Use an exact texMini version when the bootstrap baseline must remain fixed:
uvx texmini==0.6.0 paper.texAdaptive packages are installed from the live TeX Live repository by upstream tlmgr. Their revisions can change over time, so this release does not promise identical grown runtimes or bit-for-bit identical PDFs. texMini does not silently replace an existing managed runtime, even when it was created by an older texMini version, because that directory is user state and may contain additional packages.
Use the published image when you specifically want container isolation:
docker run --rm -v texmini-runtime:/opt/TinyTeX -v "${PWD}:/work" ghcr.io/alexmill/texmini:latest paper.texThe image uses the same pinned provisioning path as native texMini. The named volume preserves packages across runs; omit it for a disposable runtime or remove it with docker volume rm texmini-runtime.
texMini targets ordinary projects that build with real TeX Live, latexmk, and pdfLaTeX, LuaLaTeX, or XeLaTeX. It can plausibly replace the compilation part of an Overleaf workflow, but it is not a collaborative editor or document-hosting service.
- Native runtime installation supports macOS Apple Silicon and x86-64, Linux glibc x86-64 and ARM64, Linux musl x86-64, and Windows x86-64.
- macOS and Linux require host Perl. Windows uses the infrastructure Perl contained in the official TinyTeX bundle.
- Windows ARM64 and platforms outside the supported matrix are not supported natively.
- DVI/PostScript output, plain TeX, pLaTeX/upLaTeX, and ConTeXt are outside texMini's supported build model.
- System-font projects depend on fonts installed on the host or in the container; texMini does not provision arbitrary operating-system fonts.
- Arbitrary project-specific executables and scripts may require additional setup. Shell escape is always opt-in.
- The managed native runtime grows as packages are installed. It is shared across builds and is not locked independently per project.
TEXMINI_ENGINE: default engine; defaults topdflatex.TEXMINI_CLEAN=true: remove supported auxiliary files after successful builds.TEXMINI_AUTO_INSTALL=false: disable document-driven package installation.TEXMINI_TINYTEX_ROOT: managed TinyTeX directory; defaults to~/.texmini/TinyTeX.TEXMINI_PACKAGE_MAP: package mapping cache; defaults to~/.texmini/package-map.json.
Changes to automatic recovery and error reporting must follow the diagnostic responsibility principle.
Run texMini from the source tree:
uv run texmini paper.texRun the test suite and validate the distributions:
uv run --group benchmark python -m unittest discover -s tests -v
uv build --sdist --wheel
uvx --from twine==6.2.0 twine check dist/*Keep reusable test inputs in tests/fixtures/. Put personal papers and local-only
test projects in the ignored tests/local/ or local/ directories, and generated
demos in output/. Generated LaTeX build files and new benchmark results are
ignored; benchmark measurements are excluded from source distributions.
The before/after performance report separates
texMini-owned overhead from TeX Live and network time. Reproducible methodology,
and thresholds are in benchmarks; raw results stay local. The
architecture decision
explains why an optimized universal Python wheel beat Rust, Go, rewrite, and
hybrid alternatives for this workload.