使用gnuplot将页面附加到现有的Postscript文件

时间:2014-12-24 04:44:30

标签: linux plot gnuplot

我想保存一些我从不同的gnuplot程序获得的图,在不同的时间运行以继续相同的postscript。目前,如果我将终端设置为postscript并提供如下输出文件:

set terminal postscript eps size 19.2,10.80 enhanced color \
    font 'Helvetica,20' linewidth 2
set output 'temp.eps'

gnuplot覆盖现有文件"temp.eps"并在新文件中绘制新图。如何将其他页面添加到现有的postscript中?

1 个答案:

答案 0 :(得分:1)

你可以使用乳胶来做到这一点。以下tex文件(我将其命名为test.tex)将您的eps文件(此处为temp.epstemp2.eps)嵌入到同一个PS文件中:

\documentclass{article}

\usepackage{graphicx}

\begin{document}

\centering
\includegraphics[width=0.9\textwidth]{temp}

\newpage

\centering
\includegraphics[width=0.9\textwidth]{temp2}

\end{document}

您需要运行

latex test.tex
dvips test.dvi

生成名为test.ps的PS文档,其中第一页包含temp.eps,第二页包含temp2.eps