0

1024*768我在 gnuplot 中设置图像大小。

set terminal png size 1024,768

为了把它放在 IEEEtran 乳胶中,我必须按比例缩小。

\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'您提到的生成图形。但是,这个数字非常难看。

在此处输入图像描述

4

1 回答 1

1

不要将像素图形用于出版物,而应使用 pdf 之类的矢量格式!

在那里,您只需给出最终图像应具有的物理尺寸。然后你不需要缩放图像,它看起来就像你准备的一样:

set terminal pdfcairo size 2.5in,1.875in font ',8'

然后将其包含在

\includegraphics{myfigure}

也许您必须稍微调整边距以尽可能多地使用空间。

于 2015-07-01T18:37:59.003 回答