最后我决定使用 PDF。我可以添加没有 EPS 包装的图片,并使用 TikZ 进行绘图 - 生活很美好 :o)
但我如何使用格努普特? 为了保持一致性,我想使用终端tikz
,并且我希望能够预览我的图表而不将它们包含在文档中。这
set term tikz standalone preamble '\usepackage[version=3]{mhchem}'
set output "test.tex"
plot x title '\ce{H2O}'
将创建一个article
可以单独编译但不能包含在其他文件中的类文件。
一个解决方案是不是使用该standalone
选项,然后制作一个小脚本,将输出包装在standalone
班级。现在该文件可以单独编译,也可以将其包含在一个文件中,但我无法指定附加前言。:o(
有人有聪明的解决方案吗?
答案1
使用standalone
和,gnuplottex
您只能获得图片,但这pgfplots
是更好的选择,因为很难管理gnuplot
和之间的标签的字体latex
\documentclass{standalone}
\usepackage[]{gnuplottex}
\usepackage[version=3]{mhchem}
\begin{document}
\begin{gnuplot}
plot x title '\ce{H2O}'
\end{gnuplot}
\end{document}