Latex IEEE提交问题

Latex IEEE提交问题,latex,tex,ieee,Latex,Tex,Ieee,我在背面创建了一个Latex dvipdf,一切都很好,生成的pdf看起来还不错。所有图像均为*.eps(IEEE要求)。 当我将所有文件上传到IEEE portal时,生成的pdf只有两张图片放错了位置,如下所示: 问题是我不知道该去哪里看,也不知道该换什么。 使用的代码非常标准: \begin{figure}[!pt] \centering \subfloat[Initial graph setup] {\includegraphics[width\textwidth,keepaspect

我在背面创建了一个Latex dvipdf,一切都很好,生成的pdf看起来还不错。所有图像均为*.eps(IEEE要求)。 当我将所有文件上传到IEEE portal时,生成的pdf只有两张图片放错了位置,如下所示:

问题是我不知道该去哪里看,也不知道该换什么。 使用的代码非常标准:

\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有关?

您在第一个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}

第3行\subfloat的结束符“]”在哪里?它在下一行{fig:dodagAft}不,不是。这是\包含图形中的结束方括号。计算代码段中的左大括号和右大括号。或者比较你的两个子标题行,第二行在{\includegraphics…}之前有一个闭合方块。我知道Latex/Tex是这里最重要的主题,但也有-下次你可能会在那里得到一个更好的答案,你完全正确:-}这是一个复制粘贴错误。。。我只是更正了原来的帖子,这样就不会让人困惑了。但问题依然存在。。。