Skip to content

Add pgf to list of builtin backends in docs. #15555

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 28, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions tutorials/introductory/usage.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,20 +391,17 @@ def my_plotter(ax, data1, data2, param_dict):
# ======== ========= =======================================================
# AGG png raster_ graphics -- high quality images using the
# `Anti-Grain Geometry`_ engine
# PS ps, vector_ graphics -- Postscript_ output
# eps
# PDF pdf vector_ graphics -- `Portable Document Format`_
# PS ps, eps vector_ graphics -- Postscript_ output
# SVG svg vector_ graphics -- `Scalable Vector Graphics`_
# PGF pgf, pdf vector_ graphics -- using the pgf_ package
# Cairo png, ps, raster_ or vector_ graphics -- using the Cairo_ library
# pdf, svg
# ======== ========= =======================================================
#
# To save plots using the non-interactive backends, use the
# ``matplotlib.pyplot.savefig('filename')`` method.
#
# To save plots using the non-interactive backends, use the
# ``matplotlib.pyplot.savefig('filename')`` method.
#
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this block is duplicated with the one just above.

# And here are the user interfaces and renderer combinations supported;
# these are *interactive backends*, capable of displaying to the screen
# and of using appropriate renderers from the table above to write to
Expand Down Expand Up @@ -444,9 +441,10 @@ def my_plotter(ax, data1, data2, param_dict):
# 'qt5agg' are equivalent.
#
# .. _`Anti-Grain Geometry`: http://antigrain.com/
# .. _Postscript: https://en.wikipedia.org/wiki/PostScript
# .. _`Portable Document Format`: https://en.wikipedia.org/wiki/Portable_Document_Format
# .. _Postscript: https://en.wikipedia.org/wiki/PostScript
# .. _`Scalable Vector Graphics`: https://en.wikipedia.org/wiki/Scalable_Vector_Graphics
# .. _pgf: https://ctan.org/pkg/pgf
# .. _Cairo: https://www.cairographics.org
# .. _PyGObject: https://wiki.gnome.org/action/show/Projects/PyGObject
# .. _pycairo: https://www.cairographics.org/pycairo/
Expand Down