Flatten and clean LaTeX, PDF, PPTX, and DOCX files for LLM consumption
Project description
LaTeX LLM Cleaner
A CLI tool that converts LaTeX .tex, compiled .pdf, PowerPoint .pptx, and Word .docx files into clean text for feeding to language models.
Why this matters
Documents weren't designed to be read by language models. Each format loses information in its own way when you extract text from it:
- PDF is the worst case. It's a display format — it stores glyph positions, not semantic content. Math fonts often use character codes that don't match their visual appearance. Tables have no structure; extractors guess cell boundaries from character positions. Figures are typically ignored entirely.
- PPTX/DOCX store equations as Office MathML — verbose XML that models struggle to interpret correctly.
- LaTeX source may be split across dozens of
\inputfiles, full of custom macros, with figures as opaque file paths.
In all cases, the model receives something different from what the author wrote, and neither the model nor the user can tell.
Here's what a standard text extractor produces from a page of a compiled paper (PDF):
qA =ω+(ε → ω)x , qB =ω(1 → x )
1 1 1 1
Pg = 1/2 for all i, g
i
dϖ 1 dPA 1 dPB
1 = 1 (ε → ω)+ 1 ( → ω)
dx 2 · dqA · 2 · dqB ·
1 1 1
Minus signs become arrows. Subscripts and superscripts scatter across lines. Greek letters map to wrong Unicode points. The model reads this confidently and reasons from it.
The same page with latex-llm-cleaner --ocr:
$q_1^A = \beta + (\alpha - \beta)x_1, \qquad q_1^B = \beta(1 - x_1)$
$P_i^g = 1/2$ for all $i, g$
$$\frac{d\pi_1}{dx_1}\bigg|_{x_1=x_2=0} = \frac{1}{2} \cdot \frac{dP_1^A}{dq_1^A} \cdot (\alpha - \beta) + \frac{1}{2} \cdot \frac{dP_1^B}{dq_1^B} \cdot (-\beta)$$
None of these formats were built for the document-to-model pipeline. Until one is, this tool bridges the gap: OCR for math, vision-based summarization for figures and tables, OMML-to-LaTeX conversion, and structured markdown output.
Installation
pip install latex-llm-cleaner
For OCR-based equation recovery from PDFs (requires Python ≤ 3.13):
pip install 'latex-llm-cleaner[ocr]'
Global install
# Recommended:
uv tool install --prerelease=allow latex-llm-cleaner
uv tool install --prerelease=allow 'latex-llm-cleaner[ocr]'
# Alternative (pipx):
pipx install latex-llm-cleaner
pipx inject latex-llm-cleaner surya-ocr 'transformers<5' # for OCR
Note:
--prerelease=allowis needed because bibtexparser v2 is still in beta.pip installhandles this automatically.
Note: OCR requires
libjpegheaders. On macOS:brew install jpeg
From source
pip install -e ".[dev]"
Usage
latex-llm-cleaner paper.tex # output to stdout
latex-llm-cleaner paper.tex -o cleaned.tex # output to file
latex-llm-cleaner paper.tex --no-bibliography # skip bib inlining
latex-llm-cleaner thesis.pdf -o thesis.md # extract text from PDF
latex-llm-cleaner thesis.pdf --ocr -o thesis.md # OCR with LaTeX equation recovery
latex-llm-cleaner slides.pptx -o slides.md # extract slides from PPTX
latex-llm-cleaner slides.pptx --notes -o slides.md # include speaker notes
latex-llm-cleaner report.docx -o report.md # extract text from Word doc
latex-llm-cleaner report.docx --notes -o report.md # include Word comments
latex-llm-cleaner paper.tex --auto-summarize # generate figure summaries via Gemini
All features are on by default. Disable individual steps with --no-* flags:
latex-llm-cleaner INPUT_FILE [options]
Options:
-o, --output FILE Write to FILE (default: stdout)
--no-flatten Disable \input/\include flattening
--no-comments Disable comment removal
--no-macros Disable macro expansion
--keep-usepackage Keep \usepackage lines (dropped by default)
--no-bibliography Disable bibliography inlining
--no-figures Disable figure summary substitution
--figure-summary-suffix S Suffix for summary files (default: _summary.txt)
--notes Include speaker notes (PPTX) or comments (DOCX)
--ocr Use Surya vision OCR for PDFs (recovers LaTeX equations, slower)
--auto-summarize Generate figure summaries via Gemini vision API
--google-api-key KEY API key for --auto-summarize (default: GOOGLE_API_KEY env var)
--encoding ENC File encoding (default: utf-8)
-v, --verbose Print processing info to stderr
PDF Input
Extracts text as markdown, preserving table structure. Tables become markdown pipe-tables. Images become [picture omitted] placeholders (or text summaries if summary files exist).
The .tex pipeline flags (--no-flatten, etc.) are ignored for PDF input.
OCR mode
The default extraction is fast but loses display equations. The --ocr flag uses Surya vision OCR to recover them as LaTeX ($...$ and $$...$$). Slower (~30s/page on Apple Silicon). Requires Python ≤ 3.13.
pip install 'latex-llm-cleaner[ocr]'
latex-llm-cleaner thesis.pdf --ocr -o thesis.md
PPTX Input
Each slide becomes a markdown section (# Slide N: Title), separated by ---. Tables are output as pipe-tables. Images become [Image] placeholders unless a summary file exists.
Speaker notes are excluded by default; use --notes to include them.
OMML equations in the presentation are converted to LaTeX.
Image summaries for PPTX
Place summary files next to the .pptx using this naming convention:
slides.pptx
slides_slide1_image1_summary.txt
slides_slide3_image2_summary.txt
DOCX Input
Extracts headings, tables (as pipe-tables), bold/italic formatting, and images (with summaries or [Image] placeholders). OMML equations are converted to LaTeX.
Use --notes to include Word comments (rendered as blockquotes with author attribution).
Auto-Summarize
The --auto-summarize flag generates text descriptions of figures using the Gemini vision API, so you don't have to write summary files by hand. Works with PDF, PPTX, DOCX, and LaTeX input.
Requires a Google API key:
export GOOGLE_API_KEY=your-key
latex-llm-cleaner paper.tex --auto-summarize -o cleaned.tex
Summaries are written as _summary.txt files next to each figure. On subsequent runs, existing summaries are reused. The goal is data-equivalent descriptions: what you'd learn from looking at the figure, nothing more.
Processing Pipeline (.tex files)
Five steps, in order (each operates on the output of the previous):
- Flatten includes — inline
\input{},\include{}, and\subfile{}recursively, with cycle detection - Remove comments — strip
%comments while respecting\%escapes and verbatim environments - Expand macros — substitute
\newcommand,\renewcommand,\def,\DeclareMathOperatorinline. Handles 0–9 arguments, optional arguments with defaults, and nested macros via multi-pass expansion. Also strips\usepackagelines (use--keep-usepackageto retain). - Inline bibliography — use a
.bblfile if available, otherwise parse.bib; replaces\bibliography{}with a\begin{thebibliography}block - Figure summary substitution — replace
\includegraphicswith text descriptions from summary files
Figure Summaries
For each image (e.g., figs/plot.png), place a summary file alongside it:
figs/plot.png ← the image
figs/plot_summary.txt ← the text summary
A summary should be data-equivalent to the figure: the same information a reader would get from looking at it, nothing more.
Good example:
Bar chart with four groups (A, B, C, D). Method X scores 0.92, 0.87, 0.76, 0.81. Method Y scores 0.85, 0.91, 0.80, 0.74. Error bars show standard deviation across 5 runs.
Bad example:
This figure clearly demonstrates the superiority of Method X, which aligns with our hypothesis.
Development
pip install -e ".[dev]"
pytest
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file latex_llm_cleaner-0.17.0.tar.gz.
File metadata
- Download URL: latex_llm_cleaner-0.17.0.tar.gz
- Upload date:
- Size: 198.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15e467f63459ba7ad9bc4cc63bde5191619fa5ca3ce613ceaee7e69c4c1cc6e2
|
|
| MD5 |
c7f8618c687d341ed657121d22207ed0
|
|
| BLAKE2b-256 |
e31fb4c9e3ddd3502ca3d67c87022f43037adf43fe46ac567c510e8114a6d91c
|
File details
Details for the file latex_llm_cleaner-0.17.0-py3-none-any.whl.
File metadata
- Download URL: latex_llm_cleaner-0.17.0-py3-none-any.whl
- Upload date:
- Size: 43.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
601c1c9577d15c2ed816ad25b3244e61da52c7dc9204cfb3d78fed5e221598d6
|
|
| MD5 |
ea5da732b7c4d7adfe0cdd3f5d8e6dbb
|
|
| BLAKE2b-256 |
fc0667563203935be8fbb73d991ad2aea33ffeb9dab1d727c8fdee3862e236ec
|