Thanks to visit codestin.com
Credit goes to github.com

Skip to content

removed glossary #18696

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 4 commits into from
Oct 13, 2020
Merged
Show file tree
Hide file tree
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
5 changes: 0 additions & 5 deletions doc/_static/mpl.css
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,6 @@ dt:target,
background-color: #ffffee;
}

dl.glossary dt {
font-weight: bold;
font-size: 1.1em;
}

pre a {
color: inherit;
text-decoration: none;
Expand Down
1 change: 0 additions & 1 deletion doc/contents.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ Overview
resources/index.rst
thirdpartypackages/index.rst
devel/index.rst
glossary/index.rst

.. only:: html

Expand Down
67 changes: 0 additions & 67 deletions doc/glossary/index.rst

This file was deleted.

17 changes: 11 additions & 6 deletions tutorials/introductory/usage.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,29 +411,29 @@ def my_plotter(ax, data1, data2, param_dict):
# ========= ================================================================
# Backend Description
# ========= ================================================================
# Qt5Agg Agg rendering in a :term:`Qt5` canvas (requires PyQt5_). This
# Qt5Agg Agg rendering in a Qt5_ canvas (requires PyQt5_). This
# backend can be activated in IPython with ``%matplotlib qt5``.
# ipympl Agg rendering embedded in a Jupyter widget. (requires ipympl).
# This backend can be enabled in a Jupyter notebook with
# ``%matplotlib ipympl``.
# GTK3Agg Agg rendering to a :term:`GTK` 3.x canvas (requires PyGObject_,
# GTK3Agg Agg rendering to a GTK_ 3.x canvas (requires PyGObject_,
# and pycairo_ or cairocffi_). This backend can be activated in
# IPython with ``%matplotlib gtk3``.
# macosx Agg rendering into a Cocoa canvas in OSX. This backend can be
# activated in IPython with ``%matplotlib osx``.
# TkAgg Agg rendering to a :term:`Tk` canvas (requires TkInter_). This
# TkAgg Agg rendering to a Tk_ canvas (requires TkInter_). This
# backend can be activated in IPython with ``%matplotlib tk``.
# nbAgg Embed an interactive figure in a Jupyter classic notebook. This
# backend can be enabled in Jupyter notebooks via
# ``%matplotlib notebook``.
# WebAgg On ``show()`` will start a tornado server with an interactive
# figure.
# GTK3Cairo Cairo rendering to a :term:`GTK` 3.x canvas (requires PyGObject_,
# GTK3Cairo Cairo rendering to a GTK_ 3.x canvas (requires PyGObject_,
# and pycairo_ or cairocffi_).
# Qt4Agg Agg rendering to a :term:`Qt4` canvas (requires PyQt4_ or
# Qt4Agg Agg rendering to a Qt4_ canvas (requires PyQt4_ or
# ``pyside``). This backend can be activated in IPython with
# ``%matplotlib qt4``.
# wxAgg Agg rendering to a :term:`wxWidgets` canvas (requires wxPython_ 4).
# wxAgg Agg rendering to a wxWidgets_ canvas (requires wxPython_ 4).
# This backend can be activated in IPython with ``%matplotlib wx``.
# ========= ================================================================
#
Expand All @@ -454,6 +454,11 @@ def my_plotter(ax, data1, data2, param_dict):
# .. _TkInter: https://docs.python.org/3/library/tk.html
# .. _PyQt4: https://riverbankcomputing.com/software/pyqt/intro
# .. _PyQt5: https://riverbankcomputing.com/software/pyqt/intro
# .. _Qt5: https://doc.qt.io/qt-5/index.html
# .. _GTK: https://www.gtk.org/
# .. _Tk: https://www.tcl.tk/
# .. _Qt4: https://doc.qt.io/archives/qt-4.8/index.html
# .. _wxWidgets: https://www.wxwidgets.org/
#
# ipympl
# ^^^^^^
Expand Down