-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
tex option not respected by date x-axis #2294
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
Comments
Can you expand a bit, I am not sure what I am supposed to be seeing in that notebook |
I am going to push this to 1.4.x (first bug fix release after 1.4.0) so we don't lose it, but this has sat for 7 months so it does not seem to be urgent. |
For a self contained example: import matplotlib
import matplotlib.pyplot as plt
from datetime import datetime, timedelta
matplotlib.rc('text', usetex=True)
t0 = datetime.now()
ts = [t0 + i * timedelta(days=1) for i in range(10)]
fig, ax = plt.subplots()
ax.plot(ts, range(10))
plt.show() It looks like this is still present. |
I think the OP is aiming at the different fonts being used for the x- and y-ticklabels. |
Yeah, it kind of works, but those '2's don't look the same to me |
Here's a notebook that shows the issue:
http://nbviewer.ipython.org/6218078
The text was updated successfully, but these errors were encountered: