可能重复:
如何避免在使用 graphicx 时显示文件名?
因此,我使用\includegraphics
命令将表格的 PDF 图像放入我的 LaTeX 文件中,但这个讨厌的"filename".pdf
标题随图像一起出现,我不知道如何摆脱它。这是我的代码:
\addtolength{\voffset}{80pt}
\oddsidemargin=1cm
\begin{landscape}
\begin{table}
\begin{center}
\caption{Short GRB sample data.}
\includegraphics[trim = 10mm 30mm 8mm 30mm, clip,,width=10in]{Short GRB data table3.pdf}
(References included on next page).
\end{center}
\end{table}
\end{landscape}
\newpage
如果可以的话我会贴一张图片,但显然作为新发帖者我不能贴。非常感谢您的帮助,谢谢。
答案1
我想您想说的是,在您的输出文件中,图像文件名出现在其顶部。不是吗?
然后,我遇到了同样的问题...解决起来非常容易。使用
\includegraphics[trim = 10mm 30mm 8mm 30mm, clip,,
width=10in]{ShortGRBdatatable3.pdf}
在您的图像文件名中,不要使用任何空格。如果需要,请使用“_”。如果图像文件的名称中有空格,它将在输出时出现在图像的顶部。因此,重命名您的图像文件并尝试一下。希望它能解决您的问题。