Metadata-Version: 2.1
Name: texplot
Version: 0.0.2
Summary: Enhance your matplotlib plots with publication-quality style
Home-page: https://github.com/ameli/texplot
Download-URL: https://github.com/ameli/texplot/archive/main.zip
Author: Siavash Ameli
Author-email: sameli@berkeley.edu
Project-URL: Documentation, https://github.com/ameli/texplot/blob/main/README.rst
Project-URL: Source, https://github.com/ameli/texplot
Project-URL: Tracker, https://github.com/ameli/texplot/issues
Keywords: reconstruct-data oceanographic-data hf-radar
Platform: Linux
Platform: OSX
Platform: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS
Classifier: Natural Language :: English
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
License-File: LICENSE.txt
License-File: AUTHORS.txt
Requires-Dist: matplotlib
Provides-Extra: docs
Provides-Extra: test

|logo|
*********

|deploy-docs|

*texplot* is a python package to enhance *matplotlib* plots with publication-quality style.

Links
=====

* `Documentation <https://ameli.github.io/texplot>`__
* `PyPI <https://pypi.org/project/texplot/>`__
* `Anaconda <https://anaconda.org/s-ameli/texplot>`__

Install
=======

This package requires :math:`\LaTeX` to be installed. Ensure that the ``latex`` executable is available on your system's ``PATH``.

Install with ``pip``
--------------------

|pypi|

::

    pip install texplot

Install with ``conda``
----------------------

|conda-version|

::

    conda install -c s-ameli texplot

Set Theme
=========

`texplot` can set theme either globally or locally:

Set Theme Globally
------------------

Call `texplot.set_theme <https://ameli.github.io/texplot/generated/texplot.set_theme.html#texplot.set_theme>`__ function to set the *texplot* theme globally in your script:

.. code-block:: python

    >>> import matplotlib.pyplot as plt
    >>> import texplot
    >>> texplot.set_theme()

    >>> # Plot an example function
    >>> fig, ax = plt.subplots()
    >>> texplot.examples.plot_function(ax)
    >>> plt.show()

.. figure:: /docs/source/_static/images/plots/function.png
   :align: left
   :figwidth: 100%
   :width: 100%

The theme set as described above will affect your entire Python script for its duration. However, you can revert to the default *matplotlib* theme at any time by calling the `texplot.reset_theme <https://ameli.github.io/texplot/generated/texplot.reset_theme.html#texplot.reset_theme>`__ function as shown below:

.. code-block:: python

    >>> # Resetting to default matplotlib theme
    >>> texplot.reset_theme()

    >>> # Plot another example function
    >>> fig2, ax2 = plt.subplots()
    >>> texplot.examples.plot_function(ax2)
    >>> plt.show()

.. figure:: /docs/source/_static/images/plots/function_no_theme.png
   :align: left
   :figwidth: 100%
   :width: 100%


Set Theme Within a Local Scope
------------------------------

The `texplot.theme <https://ameli.github.io/texplot/generated/texplot.theme.html#texplot.theme>`__ function acts as a context manager, allowing you to apply the *texplot* theme within a specific local scope or function. The example below demonstrates setting the theme in a local scope. Outside of this scope, the default *matplotlib* theme remains unchanged.

.. code-block:: python

    >>> import matplotlib.pyplot as plt
    >>> import texplot

    >>> with texplot.theme():
    >>>     fig, ax = plt.subplots()
    >>>     texplot.examples.plot_function(ax)
    >>>     plt.show()

Similarly, you can use the context manager with a function. In the example below, the *texplot* theme is applied only within the ``plot()`` function. Outside this function, the default *matplotlib* theme remains unchanged.

.. code-block:: python

    >>> import matplotlib.pyplot as plt
    >>> import texplot

    >>> @texplot.theme()
    >>> def plot():
    >>>     fig, ax = plt.subplots()
    >>>     texplot.examples.plot_function(ax)
    >>>     plt.show()
    
    >>> plot()

Theme Options
=============

You can customize the theme by passing arguments to either the `texplot.set_theme <https://ameli.github.io/texplot/generated/texplot.set_theme.html#texplot.set_theme>`__ or `texplot.theme <https://ameli.github.io/texplot/generated/texplot.theme.html#texplot.theme>`__ functions. The parameters for both functions are identical and detailed in the `API reference <https://ameli.github.io/texplot/api.html>`__. The available arguments are as follows:

.. list-table::
    :header-rows: 1

    * - Argument
      - Value
      - Description
    * - ``context``
      - ``'paper'``, ``'notebook'`` (default), ``'talk'``, or ``'poster'``
      - Adjusts font size and scales of the plot depending on the context.
    * - ``style``
      - See `matplotlib.style.available <https://matplotlib.org/stable/api/style_api.html#matplotlib.style.available>`__
      - Sets `matplotlib style <https://matplotlib.org/stable/gallery/style_sheets/style_sheets_reference.html>`__
    * - ``font_scale``
      - float (default is ``1``)
      - Scales the fonts.
    * - ``use_latex``
      - boolean (default is `True`)
      - If `True`, the mathematical symbols are rendered with :math:`\LaTeX`.
    * - ``rc``
      - dictionary (default is ``{}``)
      - Passes any additional `matplotlib`'s `rcParam dictionary <https://matplotlib.org/stable/users/explain/customizing.html>`__.

In the example below, we configure a dark background style, increase the font size by a factor of 1.2, and set the font family to sans-serif:

.. code-block:: python

    >>> import matplotlib.pyplot as plt
    >>> import texplot

    >>> with texplot.theme(
    ...         rc={'font.family': 'sans-serif'},
    ...         style='dark_background',
    ...         font_scale=1.2):
    >>>
    >>>     # Plot an example diagram
    >>>     fig, ax = plt.subplots()
    >>>     texplot.examples.plot_bifurcation_diagram(ax)
    >>>     plt.show()

.. figure:: ./docs/source/_static/images/plots/logistic.png
   :align: left
   :figwidth: 100%
   :width: 100%

Show and Save Plots
===================

When working on a machine without display graphics, such as a remote server that lacks X11, displaying plots is not possible. Instead, plots should be saved. The `texplot.save_plot <https://ameli.github.io/texplot/generated/texplot.save_plot.html#texplot.save_plot>`__ function provides a simple wrapper around `matplotlib.pyplot.savefig <https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.savefig.html>`__ to facilitate this. Additionally, the `texplot.show_or_save_plot <https://ameli.github.io/texplot/generated/texplot.show_or_save_plot.html#texplot.show_or_save_plot>`__ function attempts to display plots initially. If no graphical backend is available, it saves the plot instead. Additionally, you can configure it to both show and save the plot. Here is an example:

.. code-block:: python

    >>> import matplotlib.pyplot as plt
    >>> import texplot

    >>> with texplot.theme(rc={'font.family': 'sans-serif'}):
    >>>
    >>>     # Plot an example function
    >>>     fig, ax = plt.subplots()
    >>>     texplot.examples.lorenz(ax)
    >>>
    >>>     # Show and save plot
    >>>     texplot.show_or_save_plot(plt, default_filename='lorenz.pdf',
    ...                               transparent_background=True, dpi=200,
    ...                               show_and_save=True, verbose=True)
    plot saved to '/home/user/lorenz.pdf'.

.. figure:: ./docs/source/_static/images/plots/lorenz.png
   :align: left
   :figwidth: 100%
   :width: 100%

Test Package
============

|build-linux| |codecov-devel|

To test the package, first clone the source code from the repository and install the required test packages by:

.. code-block:: bash

    git clone https://github.com/ameli/texplot.git
    cd texplot
    python -m pip install -r tests/requirements.txt
    python -m pip install .

Then, test with `pytest <https://docs.pytest.org/>`__:

.. code-block:: bash

    pytest

How to Contribute
=================

We welcome contributions via `GitHub's pull request <https://github.com/ameli/texplot/pulls>`_. If you do not feel comfortable modifying the code, we also welcome feature requests and bug reports as `GitHub issues <https://github.com/ameli/texplot/issues>`_.

License
=======

|license|

.. This package includes `Computer Modern <https://tug.org/FontCatalogue/computermodern/>`__ font for rendering :math:`\LaTeX`, which is distributed under `Knuth license <https://www.ctan.org/license/knuth>`__, a permissive license authored by Donald Knuth.

.. |logo| image:: https://raw.githubusercontent.com/ameli/texplot/main/docs/source/_static/images/icons/logo-texplot-light.svg
   :width: 200
.. |deploy-docs| image:: https://img.shields.io/github/actions/workflow/status/ameli/texplot/deploy-docs.yml?label=docs
   :target: https://github.com/ameli/texplot/actions?query=workflow%3Adeploy-docs
.. |deploy-docker| image:: https://img.shields.io/github/actions/workflow/status/ameli/texplot/deploy-docker.yml?label=build%20docker
   :target: https://github.com/ameli/texplot/actions?query=workflow%3Adeploy-docker
.. |codecov-devel| image:: https://img.shields.io/codecov/c/github/ameli/texplot
   :target: https://codecov.io/gh/ameli/texplot
.. |license| image:: https://img.shields.io/github/license/ameli/texplot
   :target: https://opensource.org/licenses/BSD-3-Clause
.. |implementation| image:: https://img.shields.io/pypi/implementation/texplot
.. |pyversions| image:: https://img.shields.io/pypi/pyversions/texplot
.. |format| image:: https://img.shields.io/pypi/format/texplot
.. |pypi| image:: https://img.shields.io/pypi/v/texplot
.. |conda| image:: https://anaconda.org/s-ameli/texplot/badges/installer/conda.svg
   :target: https://anaconda.org/s-ameli/texplot
.. |platforms| image:: https://img.shields.io/conda/pn/s-ameli/texplot?color=orange?label=platforms
   :target: https://anaconda.org/s-ameli/texplot
.. |conda-version| image:: https://img.shields.io/conda/v/s-ameli/texplot
   :target: https://anaconda.org/s-ameli/texplot
.. |conda-downloads| image:: https://img.shields.io/conda/dn/s-ameli/texplot
   :target: https://anaconda.org/s-ameli/texplot
.. |tokei| image:: https://tokei.ekzhang.com/b1/github/ameli/texplot?category=lines
   :target: https://github.com/ameli/texplot
.. |languages| image:: https://img.shields.io/github/languages/count/ameli/texplot
   :target: https://github.com/ameli/texplot
.. |build-linux| image:: https://img.shields.io/github/actions/workflow/status/ameli/texplot/build-linux.yml
   :target: https://github.com/ameli/texplot/actions?query=workflow%3Abuild-linux 
.. .. |binder| image:: https://mybinder.org/badge_logo.svg
..    :target: https://mybinder.org/v2/gh/ameli/texplot/HEAD?filepath=notebooks%2Fquick_start.ipynb
