当我将gnuplot用于某些eps文件时,我可以获得一些轴标签。这样可行。当我想将它们实施到我的乳胶文件中时,轴的描述会在图的边界处被切掉。无论数字有多大,无论如何标签字母都会被切割掉。
我该如何解决这个问题?
答案 0 :(得分:1)
Gnuplot通常不会很好地调整.eps文件的大小,特别是如果边缘有问题的话。感谢this post我了解到有一个简单的命令来纠正边界框以适应.eps的内容:
ps2epsi input.eps output.eps
这对我来说很好。 gnuplot主页上还有fixbb脚本。
答案 1 :(得分:0)
好的,你走了:
乳胶代码:
\begin{figure}[H]
\centering
\includegraphics[scale=1] {picture.eps}
\caption{caption}
\label{fig:picture}
\end{figure}
的Gnuplot
set terminal postscript enhanced portrait "Times Italic" 12 size 14cm,12cm #Key Character Size
set output 'picture.eps'
set multiplot layout 2,2
set border
set tics font "Times Italic, 10"
set xlabel "{/Symbol e} %" font "Times Italic, 10"
set ylabel "{/Symbol s}[MPa]" font "Times Italic, 10" rotate by -0
plot plot exp(-x**2 / 2)
plot plot exp(-x**2 / 2)
plot plot exp(-x**2 / 2)
plot plot exp(-x**2 / 2)
这样的事情应该有效。然后{/ Symbol s} [MPa]没有在乳胶文件中正确显示。