8000 backend_pgf: \pgftext now requires \color inside argument (fix #3779) [backport to 1.4.x] by pwuertz · Pull Request #3780 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

backend_pgf: \pgftext now requires \color inside argument (fix #3779) [backport to 1.4.x] #3780

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 2 commits into from
Nov 11, 2014
Merged
Show file tree
Hide file tree
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: Check text color in tests
  • Loading branch information
pwuertz committed Nov 11, 2014
commit 46013dee7cc88fbfb745bcc28d772e0839d16d50
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions lib/matplotlib/tests/test_backend_pgf.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ def create_figure():
plt.plot([0.9], [0.5], "ro", markersize=3)
plt.text(0.9, 0.5, 'unicode (ü, °, µ) and math ($\\mu_i = x_i^2$)',
ha='right', fontsize=20)
plt.ylabel('sans-serif with math $\\frac{\\sqrt{x}}{y^2}$..',
family='sans-serif')
plt.ylabel('sans-serif, blue, $\\frac{\\sqrt{x}}{y^2}$..',
family='sans-serif', color='blue')


# test compiling a figure to pdf with xelatex
Expand Down
0