Skip to main content

Generate LaTeX tables and figures with glom-style specs

Project description

texer

Generate LaTeX tables and figures (PGFPlots) with Python using a glom-style spec system.

Installation

pip install texer

Quick Start

Tables

from texer import Table, Tabular, Row, Ref, Iter, Format, evaluate

# Define structure with specs
table = Table(
    Tabular(
        columns="lcc",
        header=Row("Experiment", "Result", "Error"),
        rows=Iter(
            Ref("experiments"),
            template=Row(
                Ref("name"),
                Format(Ref("result"), ".3f"),
                Format(Ref("error"), ".1%"),
            )
        ),
        toprule=True,
        bottomrule=True,
    ),
    caption=Ref("table_title"),
    label="tab:results",
)

# Provide data
data = {
    "table_title": "Experimental Results",
    "experiments": [
        {"name": "Trial A", "result": 3.14159, "error": 0.023},
        {"name": "Trial B", "result": 2.71828, "error": 0.015},
    ]
}

print(evaluate(table, data))

Plots

from texer import PGFPlot, Axis, AddPlot, Coordinates, Ref, Iter, evaluate

plot = PGFPlot(
    Axis(
        xlabel=Ref("x_label"),
        ylabel=Ref("y_label"),
        grid=True,
        plots=[
            AddPlot(
                color="blue",
                mark="*",
                coords=Coordinates(
                    Iter(Ref("measurements"), x=Ref("time"), y=Ref("value"))
                ),
            )
        ],
        legend=[Ref("series_name")],
    )
)

data = {
    "x_label": "Time (hours)",
    "y_label": "Temperature (°C)",
    "series_name": "Sensor 1",
    "measurements": [
        {"time": 0, "value": 20.5},
        {"time": 1, "value": 22.3},
        {"time": 2, "value": 25.1},
    ]
}

print(evaluate(plot, data))

Cycle Lists

PGFPlots cycle lists allow you to define a sequence of styles that are automatically applied to successive \addplot commands. When using cycle lists, AddPlot automatically generates \addplot+ (instead of \addplot) when no explicit styling is provided, allowing PGFPlots to pick the next style from the cycle list:

from texer import PGFPlot, Axis, AddPlot, Coordinates

# Using a predefined cycle list
plot = PGFPlot(
    Axis(
        cycle_list_name="color list",
        plots=[
            # These generate \addplot+ to use cycle list styles
            AddPlot(coords=Coordinates([(0, 0), (1, 1), (2, 4)])),
            AddPlot(coords=Coordinates([(0, 1), (1, 2), (2, 3)])),
        ],
    )
)

# Custom cycle list with style dictionaries
plot = PGFPlot(
    Axis(
        cycle_list=[
            {"color": "blue", "mark": "*", "line width": "2pt"},
            {"color": "red", "mark": "square*", "line width": "2pt"},
            {"color": "green", "mark": "triangle*", "line width": "2pt"},
        ],
        plots=[
            # Automatically uses \addplot+ to apply cycle list styles
            AddPlot(coords=Coordinates([(0, 1), (1, 2), (2, 4)])),
            AddPlot(coords=Coordinates([(0, 2), (1, 3), (2, 5)])),
        ],
    )
)

# Simple color cycle
plot = PGFPlot(
    Axis(
        cycle_list=["blue", "red", "green"],
        plots=[
            AddPlot(coords=Coordinates([(0, 0), (1, 1)])),
            AddPlot(coords=Coordinates([(0, 1), (1, 2)])),
        ],
    )
)

# Override cycle list with explicit styling
plot = PGFPlot(
    Axis(
        cycle_list=["blue", "red", "green"],
        plots=[
            # This uses the cycle list (generates \addplot+)
            AddPlot(coords=Coordinates([(0, 0), (1, 1)])),
            # This overrides with explicit styling (generates \addplot)
            AddPlot(color="purple", mark="x", coords=Coordinates([(0, 1), (1, 2)])),
        ],
    )
)

Documentation

For complete documentation, visit: Documentation Site

Or build the docs locally:

pip install -e ".[docs]"
mkdocs serve

Then open http://127.0.0.1:8000

Key Features

  • Data-driven: Separate structure from data
  • Type-safe: Full type hints and mypy support
  • Glom-style specs: Familiar pattern for data extraction
  • LaTeX best practices: Automatic escaping, booktabs tables
  • NumPy integration: Direct support for NumPy arrays
  • PDF compilation: Built-in compile_to_pdf() method

Core Concepts

texer uses specs to describe how to extract and transform data:

  • Ref("path") - Access data by path (e.g., Ref("user.name"))
  • Iter(source, template=...) - Loop over collections
  • Format(value, ".2f") - Format values
  • Cond(test, if_true, if_false) - Conditional logic
  • Raw(r"\textbf{bold}") - Unescaped LaTeX

See the Core Concepts guide for details.

LaTeX Requirements

For PDF compilation, you need a LaTeX distribution:

  • Ubuntu/Debian: sudo apt-get install texlive-latex-base texlive-pictures
  • macOS: brew install --cask mactex
  • Windows: MiKTeX or TeX Live

Development

# Install dev dependencies
pip install -e ".[dev]"

# Run tests
pytest

# Type checking
mypy src

License

MIT

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

texer-0.4.8.tar.gz (29.5 kB view details)

Uploaded Source

Built Distribution

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

texer-0.4.8-py3-none-any.whl (19.7 kB view details)

Uploaded Python 3

File details

Details for the file texer-0.4.8.tar.gz.

File metadata

  • Download URL: texer-0.4.8.tar.gz
  • Upload date:
  • Size: 29.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for texer-0.4.8.tar.gz
Algorithm Hash digest
SHA256 36efbdc530f91378bf05fad8a86c608456dc348a6e92bd74f7a0c362b47bdbd2
MD5 2a356b332f2cad0c6a69d325d16eff44
BLAKE2b-256 b50c6bb58de4f39f78bed6ffa0650716a56d0c3c27e884553100fe401ed67a3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for texer-0.4.8.tar.gz:

Publisher: publish.yml on tlamadon/texer

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

File details

Details for the file texer-0.4.8-py3-none-any.whl.

File metadata

  • Download URL: texer-0.4.8-py3-none-any.whl
  • Upload date:
  • Size: 19.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for texer-0.4.8-py3-none-any.whl
Algorithm Hash digest
SHA256 96d011e608221e703d20cb8c1250eff0be5c13f73c27a26e3dceb0a7a2f54b1a
MD5 a1433df7937c9b4019582bfff5d72ac3
BLAKE2b-256 cae124b8bc9ebbb98c415e42d63fb908a15331d9dd66806816324aacd81e7062

See more details on using hashes here.

Provenance

The following attestation bundles were made for texer-0.4.8-py3-none-any.whl:

Publisher: publish.yml on tlamadon/texer

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