matplotlib2tikz

Matplotlib、Inkscape、TeXStudio 工作流程 SVG 图形
matplotlib2tikz

Matplotlib、Inkscape、TeXStudio 工作流程 SVG 图形

当我在 matplotlib 中创建 SVG 图形时 import numpy as np import matplotlib.pyplot as plt import matplotlib new_rc_params = {'text.usetex': False, "svg.fonttype": 'none' } matplotlib.rcParams.update(new_rc_params) x = np.linspace(-1, 1, 100) y = x**2 plt.plot(x,y) plt.xlabel(r'x \$\rightarro...

Admin

overleaf 中的颜色图错误
matplotlib2tikz

overleaf 中的颜色图错误

因此,我正在使用色彩图对数据进行可视化,使用我的计算机的编译器,我可以生成此图表: 这就是我想要将其放在 overleaf 中的方式,但是当我使用相同的 ecode 时,我得到了以下信息: 为了正确显示色彩图,overleaf 中缺少什么? 我添加代码: \documentclass[tikz]{standalone} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage{pgfplots} \usepackage{tikz} \pgfplotsset{ ti...

Admin

组图中的标签错误
matplotlib2tikz

组图中的标签错误

我正在尝试从 Python 转换子图。我正在使用 matplotlib2tikz,但出现一个我无法理解的错误。标签与图形重叠。 我该如何解决这个问题? 这是代码: \documentclass[12pt, openany]{report} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage[french]{babel} \usepackage{pgfplots} \usepackage{amsmath} \usepackage{graphicx} %inclusion ...

Admin

matplotlib2tikz 日期数据错误
matplotlib2tikz

matplotlib2tikz 日期数据错误

因此,我尝试将一个图从 python 转换为 Tikz,x 轴上有小时数据。 这是python中的图像: 但是当我使用时tikz_save出现这个错误: TypeError: a float is required 我正在查看,我猜测错误是由于 x 中的数据类型造成的。我该如何解决这个问题? 提前致谢! ...

Admin

matplotlib2tikz 的隐式错误 thisrow 已经存在
matplotlib2tikz

matplotlib2tikz 的隐式错误 thisrow 已经存在

使用 matplotlib2tikz v0.6.18 从 Python 3.7 到 LaTeX 代码的转换效果很好。唯一的例外是一些忽略的参数,对我来说这些参数似乎被合理地丢弃了(纵横比和刻度标签文本宽度)。我使用的是 pgfplots 的当前版本,即 1.16。 当使用 pdflatex 或 lualatex 进行编译时,它会失败并显示以下令人费解的错误消息 - 令人费解的是没有明确的thisrow参数: ! Package PGF Math Error: The function `thisrow' already exists. 简化了代码...

Admin

我不知道密钥 /tikz/none
matplotlib2tikz

我不知道密钥 /tikz/none

I do not know the key /tikz/none我使用了 matplotlib2tikz,现在编译时出现 Package pgfkeys 错误: 。 我已\RequirePackage{pgfplots}指定\RequirePackage[utf8]{inputenc},但似乎缺少其他包。我查看了类似的 pgfkeys 错误,但没有找到与我类似的错误。\end{axis}他抱怨的是命令。 示例代码: \documentclass{article} \usepackage[utf8]{inputenc} \usepackage{pgfplo...

Admin

matplotlib2tikz 生成的 tikz 图片存在问题
matplotlib2tikz

matplotlib2tikz 生成的 tikz 图片存在问题

我正在尝试使用 pgfplots 自动生成几百张图表。为了在文本文件上运行,我在 python 中使用了以下代码 for fname in os.listdir(cwd): data=np.loadtxt(cwd + '/' + fname) X=data[:,0] Y=data[:,1] plt.plot(X,Y, label=fname) plt.legend() tikz_save('test.tikz') plt.show() #or 文本文件非常简单 0 6.60951137543e-07 1 1.39856...

Admin

Matplotlib2tikz 增加刻度之间的间距
matplotlib2tikz

Matplotlib2tikz 增加刻度之间的间距

我正在使用matplotlib2tikz它绘制条形图。但是,刻度之间的间距不够。如何增加结果之间的间距? 我的代码: import matplotlib matplotlib.use("Agg") import matplotlib.pyplot as plt import scipy as sp h = [47]*90 labels = ['a']*90 fig = plt.figure(figsize=(len(labels) * 0.45, 7)) ax = fig.add_subplot(111) rects1 = ax.bar(sp.aran...

Admin

matplotlib2tikz 图中缺少插入 {
matplotlib2tikz

matplotlib2tikz 图中缺少插入 {

使用matplotlib创建条形图后,我使用matplotlib2tikz创建tikz图形。 代码如下: % This file was created by matplotlib2tikz v0.6.13. \begin{tikzpicture} \definecolor{color0}{rgb}{0.75,0,0.75} \begin{axis}[ title={Gender distribution}, xlabel={Age}, ylabel={Number of people}, xmin=-0.22, xmax=2.42, ymin=0, ...

Admin

使用 matplotlib2tikz 从 Python 导入包含步骤函数的 tikzfigure 时出现问题
matplotlib2tikz

使用 matplotlib2tikz 从 Python 导入包含步骤函数的 tikzfigure 时出现问题

我在 Python 中生成一个步进函数并将其导出为tikzfigure,保存在文件中step.tex。 import numpy as np import matplotlib.pyplot as plt from matplotlib2tikz import save as tikz_save plt.step(np.array([1, 2, 3, 4]), np.array([10, 5, 15, 20])) tikz_save('step.tex') 该文件的内容step.tex是 % This file was created by mat...

Admin