tikzplotlib icon indicating copy to clipboard operation
tikzplotlib copied to clipboard

:bar_chart: Save matplotlib figures as TikZ/PGFplots for smooth integration into LaTeX.

Results 138 tikzplotlib issues
Sort by recently updated
recently updated
newest added
trafficstars

The documentation mentions support for a `_tikzplotlib_anchors` attribute on matplotlib Axes() objects to add custom anchors in the plot (very useful to refer back to from custom tikz code outside...

I'm using version 0.10.1 of tikzplotlib and noticed this issue in the legend when working with the markerevery option. The legend is apparently made of three points and will thus...

I can't be bothered to minimize a test-case for this right now, sorry. Non-minimal test case at the bottom of https://gist.github.com/JasonGross/50bf9f6ccf8e1eff07fff2a35db703ee#file-l1-not-sparse-use-product-ipynb commit 981a0e4258b5dd566e784c00a98fbd30705f9438

```python import matplotlib.pyplot as plt import seaborn as sns import tikzplotlib import numpy as np np.random.seed(42) data = np.random.rand(4, 2) fig, ax = plt.subplots() sns.scatterplot({str(i): d for i, d in...

Fixes #609 Fixes #611 Closes #612 We avoid duplicating `\addplot` instructions in the code, thereby avoiding quadratic blowup in the generated code. Presumably this should at some point instead be...

The code in #609 does not compile, giving `! Argument of \XC@cnv@RGB has an extra }.` This is because the code emits `visualization depends on={value \thisrow{draw} \as \drawcolor}` despite the...