如何将带有颜色条的matplotlib pgf导入乳胶文档

How to import matplotlib pgf with colorbar into latex document

我有一个带有颜色条的 matplotlib 图。 我将图形保存为 PGF,以便我可以在乳胶文档中使用。 图表进入不同的目录。当我导入它们时,没有显示颜色条。

在PGF文件里面,有一些说明:

%% Figures using additional raster images can only be included by \input if
%% they are in the same directory as the main LaTeX file. For loading figures
%% from other directories you can use the `import` package
%%   \usepackage{import}
%% and then include the figures with
%%   \import{<path to file>}{<filename>.pgf}

我实际上是按照描述的方式使用导入的。知道为什么找不到 colorbar png 吗?

我可以使用这里的答案解决它:

https://tex.stackexchange.com/a/282110/91843

在文档的开头我不得不放:

\newcommand\inputpgf[2]{{
\let\pgfimageWithoutPath\pgfimage
\renewcommand{\pgfimage}[2][]{\pgfimageWithoutPath[##1]{#1/##2}}
\input{#1/#2}
}}

然后我可以导入使用:

\inputpgf{path/to/figures}{figure.pgf}

注意:请用Tex给他的答案投票!