Skip to main content

Local-first conversion of native scientific PDFs into editable Beamer decks.

Project description

pdf2beamer

Typing SVG

`pdf2beamer` is a local-first Python package for converting native scientific PDF papers into editable, compilable Beamer presentations.

The project is intentionally structured around inspectable intermediate representations:

PDF -> PaperIR -> ArgumentGraph -> DeckPlan -> SlideIR -> Beamer

The package defines strict Pydantic v2 data models and keeps real Docling, PyMuPDF, Nemotron generation, validation, rendering, and compilation behind local integration points.

pdf2beamer CLI demo

Constraints

  • No external API calls.
  • No OCR or scanned-PDF fallback.
  • Local Nemotron generation plus Qwen embedding/reranking adapters are dependency-injected.
  • LLM components generate structured JSON only.
  • Beamer is rendered deterministically from SlideIR.

Public API Sketch

from pdf2beamer import PdfToBeamerPipeline, PipelineConfig

config = PipelineConfig(
    model_path="./models/nemotron-3-nano-4b-gguf/NVIDIA-Nemotron-3-Nano-4B-Q4_K_M.gguf",
    embedding_model_path="./models/Qwen3-Embedding-0.6B",
    reranker_model_path="./models/Qwen3-Reranker-0.6B",
    duration_minutes=10,
    audience="technical",
    theme="clean",
)

pipeline = PdfToBeamerPipeline(config)
result = pipeline.generate("paper.pdf", "out/")

Local Models

Real model and PDF backends are optional. The base package imports without installing heavy extraction or model dependencies, and the library never downloads model files at runtime.

Install the base package:

pip install pdf2beamer

With local model download and inference support only:

pip install "pdf2beamer[models]"

With the full local pipeline for native PDFs and real local models:

pip install "pdf2beamer[models,pdf,docling]"

Download default models into ./models/:

pdf2beamer download-models .

Expected local files, auto-detected by --real-models when present:

  • Generation: models/nemotron-3-nano-4b-gguf/NVIDIA-Nemotron-3-Nano-4B-Q4_K_M.gguf
  • Embedding: models/Qwen3-Embedding-0.6B
  • Reranking: models/Qwen3-Reranker-0.6B

You can override paths with --model, --embedding, or --reranker.

Model files are local assets and should not be committed. Store them under models/; .gitignore excludes models/ and common model-weight formats.

Download Models From Hugging Face

The models extra includes Hugging Face download tooling. If your Hugging Face account needs access to a model, authenticate once:

hf auth login

Download the expected local model layout:

pdf2beamer download-models .

Equivalent manual Hugging Face commands:

mkdir -p models/nemotron-3-nano-4b-gguf \
  models/Qwen3-Embedding-0.6B \
  models/Qwen3-Reranker-0.6B

hf download nvidia/NVIDIA-Nemotron-3-Nano-4B-GGUF \
  NVIDIA-Nemotron-3-Nano-4B-Q4_K_M.gguf \
  --local-dir models/nemotron-3-nano-4b-gguf

hf download Qwen/Qwen3-Embedding-0.6B \
  --local-dir models/Qwen3-Embedding-0.6B

hf download Qwen/Qwen3-Reranker-0.6B \
  --local-dir models/Qwen3-Reranker-0.6B

Quick local check:

test -f models/nemotron-3-nano-4b-gguf/NVIDIA-Nemotron3-Nano-4B-Q4_K_M.gguf
test -d models/Qwen3-Embedding-0.6B
test -d models/Qwen3-Reranker-0.6B
git check-ignore -v models/nemotron-3-nano-4b-gguf/NVIDIA-Nemotron-3Nano-4B-Q4_K_M.gguf

Then run with real local models. Use --no-compile if you only want the editable out/main.tex file:

uv run --extra pdf --extra docling --extra models pdf2beamer generate paper.pdf --real-models --no-compile

LaTeX Compilation

pdf2beamer always writes out/main.tex. To also produce out/main.pdf, install a TeX distribution that provides the latexmk command, then run without --no-compile.

Debian/Ubuntu:

sudo apt update
sudo apt install latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended

Windows:

winget install --id MiKTeX.MiKTeX --exact
winget install --id StrawberryPerl.StrawberryPerl --exact

MiKTeX provides the TeX toolchain, and latexmk needs Perl on Windows. Restart the terminal after installation so the updated PATH is visible.

macOS:

brew install --cask mactex-no-gui

Check that latexmk is available:

latexmk --version

Compile during generation:

uv run --extra pdf --extra docling --extra models pdf2beamer generate paper.pdf --real-models

Fake-model command for lightweight local development:

pdf2beamer generate paper.pdf \
  --use-fake-models \
  --duration 10 \
  --output out/

Real local-model command:

pdf2beamer generate paper.pdf \
  --real-models \
  --duration 10 \
  --audience technical \
  --output out/

Structured GGUF Output

The GGUF generator is exposed as LocalNemotronGenerator and loads a local Nemotron instruct GGUF through llama-cpp-python. For ArgumentGraph and SlideIR, it first tries Instructor's local llama-cpp-python integration:

instructor.patch(
    create=llama.create_chat_completion_openai_v1,
    mode=instructor.Mode.JSON_SCHEMA,
)

This path returns Pydantic response models directly and retries validation failures. If Instructor or the OpenAI-compatible llama.cpp method is unavailable, the generator falls back to llama.cpp response_format JSON schema/object mode, then to strict JSON parsing.

CLI controls:

pdf2beamer generate paper.pdf \
  --real-models \
  --instructor \
  --instructor-max-retries 2 \
  --no-compile \
  --output out/

Disable Instructor and use llama.cpp response format fallback:

pdf2beamer generate paper.pdf --real-models --no-instructor --output out/

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

pdf2beamer-0.1.2.tar.gz (456.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pdf2beamer-0.1.2-py3-none-any.whl (92.3 kB view details)

Uploaded Python 3

File details

Details for the file pdf2beamer-0.1.2.tar.gz.

File metadata

  • Download URL: pdf2beamer-0.1.2.tar.gz
  • Upload date:
  • Size: 456.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pdf2beamer-0.1.2.tar.gz
Algorithm Hash digest
SHA256 0c97c727fadbcb906a73a11df65f354c4143211443077961b6f85eb8ab9c2021
MD5 2c3e0b2ad87697304ef93841c7c1a5da
BLAKE2b-256 7b4038fef473e693682cbafc2b47836c060c07a15c0834d91fc86a131cf9ede3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pdf2beamer-0.1.2.tar.gz:

Publisher: publish.yml on LelioG/pdf2beamer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pdf2beamer-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: pdf2beamer-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 92.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pdf2beamer-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 812b7fa4015bd54b0a0b54344d15405bc8be77934da0ec6906f69d87e4ebd506
MD5 cc1eb7fa938eafebc920f3e299af9f97
BLAKE2b-256 36bfe2ad281a81ecba95afd0c820843ca4eb31b9cec5f8ba94f14e742ce3a6a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pdf2beamer-0.1.2-py3-none-any.whl:

Publisher: publish.yml on LelioG/pdf2beamer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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