8000 backend_pgf: improve handling of temporary directories by pwuertz · Pull Request #1286 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

backend_pgf: improve handling of temporary directories #1286

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 2, 2012
Merged
Changes from 1 commit
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
Prev Previous commit
backend_pgf: add a remark concerning #1324 to the doc, some cleanup
  • Loading branch information
pwuertz committed Oct 2, 2012
commit ff5cd1cafd8df27990fbb33feb16cb45cf38ffad
22 changes: 11 additions & 11 deletions doc/users/pgf.rst
Original file line number Diff line number Diff line change
Expand Up @@ -112,37 +112,37 @@ unicode handling must be configured in the preamble.

.. image:: /_static/pgf_texsystem.*

.. _pgf-hangups:

Possible hangups
================
.. _pgf-troubleshooting:

Troubleshooting
===============

* Please note that the TeX packages found in some Linux distributions and
MiKTeX installations are dramatically outdated. Make sure to update your
package catalog and upgrade or install a recent TeX distribution before
reporting problems.
package catalog and upgrade or install a recent TeX distribution.

* On Windows, the :envvar:`PATH` environment variable may need to be modified
to include the directories containing the latex, dvipng and ghostscript
executables. See :ref:`environment-variables` and
:ref:`setting-windows-environment-variables` for details.

* A limitation on Windows causes the backend to keep file handles that have
been opened by your application open. As a result, it may not be possible
to delete the corresponding files until the application closes (see
`#1324 <https://github.com/matplotlib/matplotlib/issues/1324>`_).

* Sometimes the font rendering in figures that are saved to png images is
very bad. This happens when the pdftocairo tool is not available and
ghostscript is used for the pdf to png conversion.

.. _pgf-troubleshooting:

Troubleshooting
===============

* Make sure what you are trying to do is possible in a LaTeX document,
that your LaTeX syntax is valid and that you are using raw strings
if necessary to avoid unintended escape sequences.

* The ``pgf.preamble`` rc setting provides lots of flexibility, and lots of
ways to cause problems. When experiencing problems, try to minimalize or
disable the custom preamble before reporting problems.
disable the custom preamble.

* If you still need help, please see :ref:`reporting-problems`

Expand Down
0