图形定位校正

图形定位校正

我发现在报告中对齐某个特定图形非常困难。不知何故,这个图形会自动定位在最右边的位置。这是我的代码。有人能帮我解决错误/定位吗?

     \begin{figure}[ht]
     \begin{picture}(1,6.85)
        \put(1.3,2.0){\includegraphics[width=12.0cm,scale=15.20]                     {figures/orthography_specimen_final.eps}}
        \end{picture}
        \caption{deep drawn component}           
     \end{figure}

答案1

由于无法访问该文件,orthography_specimen_final.eps我们很难对可能发生的情况做出明确的诊断。

除非有具体且令人信服的理由不是将图像置于文本块的中心,几乎总是最好的方法就是将图像置于中心。如果这对于您的图形情况是可以接受的,您可以figure通过省略picture环境和相关命令并使用简单的\centering指令来简化浮动中的代码。

\begin{figure}[ht]
\centering
\includegraphics[width=12.0cm,scale=15.20]{figures/orthography_specimen_final.eps}
\caption{deep drawn component}           
\end{figure}

相关内容