我创建了一个以 PDF 格式保存的图形,并希望将其包含在我的文档中。当我使用以下命令时,我的图形与上方和下方的文本片段之间有一个分页符。另外,我不知道如何在 PDF 中包含图形标题。这是我使用的:
\includepdf[scale=0.85, angle=90, pagecommand={}]{Assembly_process.pdf}
希望有人能帮助我。
答案1
欢迎来到 tex.se!该软件包graphicx
还可以加载 pdf。(下文中的example-image
s 实际上是 pdf。)
\documentclass{article}
\usepackage{graphicx}
\begin{document}
Text \includegraphics[scale=0.4,angle=90]{example-image-a.pdf} \bigskip
With caption:
\begin{figure}[h]
\centering
\includegraphics[scale=0.4,angle=90]{example-image-b.pdf}
\caption{This is the caption for b}
\end{figure}
\end{document}