Skip to main content

TeX Figure extension for Sphinx

Project description

Overview

sphinxcontrib-texfigure is a Sphinx extension for generating figures and diagrams from TeX files.

For an example of a diagram this extension could produce, please see http://htsql.org/doc/overview.html#htsql-in-a-nutshell. For more examples, see demo directory in the source distribution.

This extension is similar in scope to sphinxcontrib-tikz extension, but with different approach to input and options.

This software is written by Kirill Simonov (Prometheus Research, LLC) and released under BSD license.

Prerequisites

The following executables are used for rasterizing TeX documents:

  • pdflatex

  • pdftoppm

  • pnmcrop

  • pnmtopng

On a Debian or a Debian-derived system, they could be installed with:

# apt-get install texlive
# apt-get install poppler-utils
# apt-get install netpbm

If you want to generate diagrams with TikZ, install:

# apt-get install texlive-pictures

Usage

To enable this extension, add the following line to conf.py:

extensions.append('sphinxcontrib.texfigure')

Use texfigure directive to convert a TeX/LaTeX document to an image. For example:

.. texfigure:: hello-world.tex

This directive will render Hello, World! in a box assuming that hello-world.tex contains the following LaTeX document:

\documentclass{article}
\usepackage{tikz}
\pagestyle{empty}

\begin{document}
\begin{tikzpicture}
\node[draw] {Hello, World!};
\end{tikzpicture}
\end{document}

Use option align to specify horizontal alignment, alt to specify text content of the image:

.. texfigure:: hello-world.tex
   :align: center
   :alt: Hello, World!

Reference

Directives

texfigure

Renders a figure from a TeX document.

The parameter of the directive must be the path to a TeX/LaTeX file. This directive has no body.

Options:

align

Horizontal alignment (left, center, or right)

alt

Alternative text content of the image.

Configuration parameters

texfigure_pdftex (default: pdflatex)

Path to pdftex or pdflatex executable.

texfigure_pdftoppm (default: pdftoppm)

Path to pdftoppm executable.

texfigure_pnmcrop (default: pnmcrop)

Path to pnmcrop executable.

texfigure_pnmtopng (default: pnmtopng)

Path to pnmtopng executable.

texfigure_texinputs (default: [])

List of directories where TeX searches for input files.

texfigure_resolution (default: 110)

Image resolution, in DPI.

CSS classes

texfigure

Applies to the generated image.

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

sphinxcontrib-texfigure-0.1.1.tar.gz (6.9 kB view details)

Uploaded Source

File details

Details for the file sphinxcontrib-texfigure-0.1.1.tar.gz.

File metadata

File hashes

Hashes for sphinxcontrib-texfigure-0.1.1.tar.gz
Algorithm Hash digest
SHA256 7d13954f2eaee6f760caf671a6110b94ad702314dacb49537a6f9ab47b1f87e1
MD5 e658f39e5b4a5ab7e6466bdc42803950
BLAKE2b-256 9ec13b759941533928d10c0eeb8e88f5e9afcc90ef8804d3e2381d4260445a40

See more details on using hashes here.

Supported by

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