我有一个带有颜色条的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吗?
答案 0 :(得分:0)
我可以使用这里的答案来解决它:
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中投票给他!