8000 DOC: Fix footnote that breaks PDF builds by QuLogic · Pull Request #21264 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

DOC: Fix footnote that breaks PDF builds #21264

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 2, 2021
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
6 changes: 3 additions & 3 deletions examples/subplots_axes_and_figures/figure_size_units.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@
# tedious for quick iterations.
#
# Because of the default ``rcParams['figure.dpi'] = 100``, one can mentally
# divide the needed pixel value by 100 [*]_:
# divide the needed pixel value by 100 [#]_:
#
plt.subplots(figsize=(6, 2))
plt.text(0.5, 0.5, '600px x 200px', **text_kwargs)
plt.show()

#############################################################################
# .. [*] Unfortunately, this does not work well for the ``matplotlib inline``
# backend in jupyter because that backend uses a different default of
# .. [#] Unfortunately, this does not work well for the ``matplotlib inline``
# backend in Jupyter because that backend uses a different default of
# ``rcParams['figure.dpi'] = 72``. Additionally, it saves the figure
# with ``bbox_inches='tight'``, which crops the figure and makes the
# actual size unpredictable.
Expand Down
0