如何在 gnuplot 中将 'terminal png size' 设置为 '2.5in' (IEEEtran)?
How to set the 'terminal png size' to '2.5in' (IEEEtran) in gnuplot?
我在gnuplot中设置图片大小为1024*768
。
set terminal png size 1024,768
为了放到IEEEtran latex中,我必须按比例缩小。
\begin{figure}[!t]
\centering
\includegraphics[scale=0.3]{myfigure}
\caption{Simulation Results}
\label{fig_sim}
\end{figure}
但是,字体很小。
顺便说一句,IEEEtran 的数字格式是:\includegraphics[width=2.5in]{myfigure}
.
@Christoph 如您所述,我使用 set terminal pdfcairo size 2.5in,2.5in font ',8'
生成了图形。不过,这身材实在是太丑了。
不要在出版物中使用像素图形,而是使用像 pdf 这样的矢量格式!
您只需给出最终图像应具有的物理尺寸。然后你不需要缩放图像,它看起来就像你准备的一样:
set terminal pdfcairo size 2.5in,1.875in font ',8'
然后将其包含在
\includegraphics{myfigure}
也许您必须稍微调整边距以尽可能多地使用 space。
我在gnuplot中设置图片大小为1024*768
。
set terminal png size 1024,768
为了放到IEEEtran latex中,我必须按比例缩小。
\begin{figure}[!t]
\centering
\includegraphics[scale=0.3]{myfigure}
\caption{Simulation Results}
\label{fig_sim}
\end{figure}
但是,字体很小。
顺便说一句,IEEEtran 的数字格式是:\includegraphics[width=2.5in]{myfigure}
.
@Christoph 如您所述,我使用 set terminal pdfcairo size 2.5in,2.5in font ',8'
生成了图形。不过,这身材实在是太丑了。
不要在出版物中使用像素图形,而是使用像 pdf 这样的矢量格式!
您只需给出最终图像应具有的物理尺寸。然后你不需要缩放图像,它看起来就像你准备的一样:
set terminal pdfcairo size 2.5in,1.875in font ',8'
然后将其包含在
\includegraphics{myfigure}
也许您必须稍微调整边距以尽可能多地使用 space。