隐藏在下方文本后面的数字

隐藏在下方文本后面的数字

我正在为 SIAM 期刊准备一篇论文,在添加图表方面遇到了很多问题。最后,我将图表转换为 pdf 并bb在 中添加了一个字段\includegraphics。现在它产生了输出,但图表隐藏在图表后面的文本后面。siamlatex1213.cls文件可以在以下位置找到http://www.siam.org/journals/auth-info.php

\documentclass[final,leqno,onefignum,onetabnum]{siamltex1213}
\begin{document}
\begin{figure}[h] 
\begin{center}
\includegraphics[width=1in,bb=0 0 575 575]{wheelnode.pdf}
\label{Wheel node}
\end{center}
\caption{Wheel node Structure}
\end{figure}
\end{document}

我用 WinEdt 运行这个文件。首先我 texify 然后运行dvi to pdf。如果我删除其中的bb字段\includegraphics,则会显示错误消息:wheelnode.bb not found。我试图在此处包含一个图像文件,但失败了,因为不允许上传 pdf 文件。

答案1

选项 1:使用包含正确边界框的 pdf 转换器。http://phaseportrait.blogspot.se/2007/06/bounding-boxes-and-eps-to-pdf.html似乎有不错的建议。

选项 2:给予正确的手动调整边界框。边界框编号为右下角 x 右下角 y 左上角 x 左上角 y。在这种情况下,似乎需要减小左下角 y(从 0 开始)。如果您无法在某些读取器中读取坐标,则需要通过反复试验手动调整。减少第二个 0 并重试。

相关内容