Metadata-Version: 2.4
Name: matplotlib-pgfutils
Version: 2.0.1
Summary: Utilities for generating PGF figures from Matplotlib
License-Expression: BSD-3-Clause
Project-URL: Documentation, https://matplotlib-pgfutils.readthedocs.io/
Project-URL: Repository, https://github.com/bcbnz/matplotlib-pgfutils/
Project-URL: Issues, https://github.com/bcbnz/matplotlib-pgfutils/issues
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: matplotlib>=3.9.0
Provides-Extra: dev
Requires-Dist: matplotlib-pgfutils[doc]; extra == "dev"
Requires-Dist: matplotlib-pgfutils[test]; extra == "dev"
Requires-Dist: reuse; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Provides-Extra: doc
Requires-Dist: zensical; extra == "doc"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"

<!--
SPDX-FileCopyrightText: Blair Bonnett
SPDX-License-Identifier: BSD-3-Clause
-->

pgfutils
========

[![REUSE status](https://api.reuse.software/badge/github.com/bcbnz/matplotlib-pgfutils)](https://api.reuse.software/info/github.com/bcbnz/matplotlib-pgfutils)
[![SPEC 0 — Minimum Supported Dependencies](https://img.shields.io/badge/SPEC-0-green?labelColor=%23004811&color=%235CA038)](https://scientific-python.org/specs/spec-0000/)

The [Portable Graphics Format (PGF)][1] is a language for producing vector
graphics within TeX documents. There is also a higher-level language TikZ (TikZ
ist kein Zeichenprogramm -- TikZ is not a drawing program) which uses PGF.

Since version 1.2, the Python plotting library [Matplotlib][2] has included a
PGF backend to generate figures ready for inclusion in a TeX document. In order
to get consistent figures that fit with the style of the document, this
requires some configuration. The aim of pgfutils is to simplify this
configuration and allow figures to be easily generated from a Python script.

The module provides two functions which set up and then save the figure. The
actual plotting is performed by standard Matplotlib functions. For example, to
generate a plot showing the 1st, 3rd, 5th, 7th, 9th and 11th harmonics of an
ideal square wave and the resulting sum:

```python
# Set up the figure environment.
from pgfutils import setup_figure, save
setup_figure(width=0.9, height=0.4)

import numpy as np
from matplotlib import pyplot as plt

# Generate a square wave from a few terms of its Fourier series.
f = 3
t = np.linspace(0, 1, 501)
square = np.zeros(t.shape)
for n in range(1, 12, 2):
    # Create this harmonic and plot it as a dashed
    # partially-transparent line.
    component = np.sin(2 * n * np.pi * f * t) / n
    plt.plot(t, component, '--', alpha=0.4)

    # Add it to the overall signal.
    square += component

# Scale the final sum.
square *= 4 / np.pi

# Plot and label the figure.
plt.plot(t, square, 'C0')
plt.xlim(0, 1)
plt.ylim(-1.2, 1.2)
plt.xlabel("Time (s)")
plt.ylabel("Amplitude (V)")

# Save as a PGF image.
save()
```

Requirements
------------

pgfutils follows [SPEC0][3] when determining supported Python versions. Any minor
version of Python released within the 3 years prior to a pgfutils release is
supported. As of April 2026, this means Python 3.12 or later.

The only required external dependency is Matplotlib. Any minor version of Matplotlib
which was first released within the 24 months prior to a pgfutils release is supported.
As of April 2026, this means Matplotlib 3.9.0 or later.

The continuous integration testing checks the combinations of supported Python and
Matplotlib version. Older versions of Python or Matplotlib may work, but are not tested
and are not supported.


Examples
--------

pgfutils comes with some examples which demonstrate its usage and integration
into a build system. Depending on your installation method, these may be
present somewhere in your filesystem (e.g., on a Linux system, they might be at
`/usr/share/matplotlib-pgfutils/examples`). They can also be found in the
[data/share/matplotlib-pgfutils/examples directory](data/share/matplotlib-pgfutils/examples).


Documentation
-------------

Documentation for pgfutils can be found online at
https://matplotlib-pgfutils.readthedocs.io/

Alternatively, you can find the source of this documentation in Markdown format
in the doc/ directory of the source:

* [Usage](doc/usage.md)
* [Configuration](doc/config.md)
* [Interactive mode](doc/interactive.md)
* [File tracking](doc/file_tracking.md)
* [Latexmk integration](doc/latexmk.md)

An example configuration file showing the default settings is given in
[data/share/matplotlib-pgfutils/pgfutils.cfg](data/share/matplotlib-pgfutils/pgfutils.cfg).


Unit testing
------------

[![Test Status](https://github.com/bcbnz/matplotlib-pgfutils/actions/workflows/ci-tests.yml/badge.svg)](https://github.com/bcbnz/matplotlib-pgfutils/actions/workflows/ci-tests.yml)
[![codecov](https://codecov.io/gh/bcbnz/matplotlib-pgfutils/branch/main/graph/badge.svg)](https://codecov.io/gh/bcbnz/matplotlib-pgfutils)

Extensive unit tests are included in the tests/ directory of the source. Each
commit to the source repository is automatically tested using GitHub actions.
The test coverage (that is, how many of the lines of code in the source were
executed during the tests) is monitored by [Codecov][4]. The badges above show
the status of the last commit made to the source.

You can also run the tests on a local copy of the code. They are designed to be
run with the [pytest][5] framework and employ the [Coverage.py][6] package via
the [pytest-cov][7] plugin to measure the coverage. If you have these packages
installed, run `pytest` from the top-level directory to execute the tests. A
basic test coverage report will be printed on the terminal, and the full report
can be viewed by opening the `htmlcov/index.html` file in your web browser.


License
-------

pgfutils is released under the three-clause BSD license. The terms of this
license can be found in the LICENSES/BSD-3-Clause.txt file in the source, or online at
https://opensource.org/licenses/BSD-3-Clause

The Cotham Sans font used in some unit tests is copyright (c) 2015 Sebastien
Sanfilippo and is licensed under the SIL Open Font License, Version 1.1. The
license can be found in the source at LICENSES/OFL-1.1.txt or online at
https://scripts.sil.org/OFL and the font itself can be found at
https://github.com/sebsan/Cotham

pgfutils supports the [REUSE][8] initiative. All files either have with SPDX-compliant
license identifiers in their headers, or have a `REUSE.toml` manifest file accompanying
them.


[1]: https://github.com/pgf-tikz/pgf
[2]: https://matplotlib.org/
[3]: https://scientific-python.org/specs/spec-0000
[4]: https://codecov.io/gh/bcbnz/matplotlib-pgfutils
[5]: https://pytest.org/
[6]: https://coverage.readthedocs.io/
[7]: https://pytest-cov.readthedocs.io/
[8]: https://reuse.software/
