将 DVI 转换为 PS/PDF 后,Gnuplot 图形出现错误

将 DVI 转换为 PS/PDF 后,Gnuplot 图形出现错误

我使用 Gnuplot 生成图形(使用“set terminal postscript eps”)。当我将图形插入我的 LaTeX 文档并使用标准编译器latex(?)进行编译时,一切看起来都很好。但是,当我将 DVI 文件转换为 PS(随后转换为 PDF)时,很多东西都丢失了——字母、标签、轴——请参见示例屏幕截图:

示例截图

例如,最外面的条形图上有一个带数字的标签,条形图标题应该是“多数”和“熵”,等等。

可能是什么问题?字体问题?版本问题?

答案1

可以将文档直接编译为 pdf。编译器称为pdflatex。您需要一个包epstopdf,该包必须位于包之后,graphicx才能正确编译 eps 图形。您必须将语句 交给编译器pdflatex --shell-escape。也许您还需要添加--enable-write18

梅威瑟:

\documentclass{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{epstopdf}

\begin{document}

\includegraphics{test.eps}

\end{document}

相关内容