You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is addressed in pull request #565. Until being merged, you can change the attribute according to the request in your local installation of tikzplotlib.
import matplotlib.pyplot as plt
import numpy as np
plt.style.use("ggplot")
t = np.arange(0.0, 2.0, 0.1)$\frac{\alpha}{2}$ ")
s = np.sin(2 * np.pi * t)
s2 = np.cos(2 * np.pi * t)
plt.plot(t, s, "o-", lw=4.1, label='test')
plt.plot(t, s2, "o-", lw=4.1, label='test2')
plt.xlabel("time (s)")
plt.ylabel("Voltage (mV)")
plt.title("Simple plot
plt.legend()
plt.grid(True)
import tikzplotlib
tikzplotlib.save("test.tex")
The text was updated successfully, but these errors were encountered: