我创建了一个乳胶dvipdf在上叶,其中一切正常工作和产生的pdf看起来很好。所有图像都是*.eps格式(IEEE要求)。当我将所有文件上传到IEEE门户网站时,生成的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有关吧?
发布于 2018-08-07 03:54:09
您的第一个子浮动命令中缺少一个方括号。
\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}https://stackoverflow.com/questions/51708247
复制相似问题