IEEE提交问题

时间:2018-08-06 12:58:44

标签: latex tex ieee

我在背面制作了Latex dvipdf,一切正常,生成的pdf看起来还不错。所有图像均为* .eps(IEEE要求)。 当我将所有文件上传到IEEE门户时,生成的pdf文件中只有两张图片的位置不正确,如下所示:

enter image description here

问题是我不知道在哪里看或要更改什么。 使用的代码非常标准:

\begin{figure}[!pt]
\centering
\subfloat[Initial graph setup]
{\includegraphics[width\textwidth,keepaspectratio]{a1.eps}
\label{fig:dodagBef}}
\hfill
\subfloat[Mobility issue]   {\includegraphics[width=0.24   
\textwidth,keepaspectratio]{a2.eps}\label{fig:dodagAft}}
\caption{DODAG's setup example}
\end{figure}

我添加了keepaspectratio,没有什么区别。我还玩过[!pt],[!ht]。 我猜想它与dvi有关系吗?

1 个答案:

答案 0 :(得分:0)

您的第一个subfloat命令中缺少方括号。

\begin{figure}[!pt]
\centering
\subfloat[Initial graph setup] %%this bracket was missing
{\includegraphics[width\textwidth,keepaspectratio]{a1.eps}
\label{fig:dodagBef}}
\hfill
\subfloat[Mobility issue]   {\includegraphics[width=0.24   
\textwidth,keepaspectratio]{a2.eps}\label{fig:dodagAft}}
\caption{DODAG's setup example}
\end{figure}