我在gnuplot中将图像大小设置为1024*768
。
set terminal png size 1024,768
为了将其放入IEEEtran乳胶中,我必须缩小规模。
\begin{figure}[!t]
\centering
\includegraphics[scale=0.3]{myfigure}
\caption{Simulation Results}
\label{fig_sim}
\end{figure}
但是,字体很小。
BTW, IEEEtran 的数字格式为:\includegraphics[width=2.5in]{myfigure}
。
@Christoph我正如你所提到的那样使用set terminal pdfcairo size 2.5in,2.5in font ',8'
生成数字。然而,这个数字非常难看。
答案 0 :(得分:1)
不要使用像素图形作为出版物,而是使用像pdf这样的矢量格式!
在那里,您只需提供最终图像应具有的物理尺寸。然后你不需要缩放图像,它看起来就像你准备的那样:
set terminal pdfcairo size 2.5in,1.875in font ',8'
然后将其包含在
中\includegraphics{myfigure}
也许您必须稍微调整边距以尽可能多地使用空间。