如何避免 \includepdf 之前的分页符并添加标题(图形)?

如何避免 \includepdf 之前的分页符并添加标题(图形)?

我创建了一个以 PDF 格式保存的图形,并希望将其包含在我的文档中。当我使用以下命令时,我的图形与上方和下方的文本片段之间有一个分页符。另外,我不知道如何在 PDF 中包含图形标题。这是我使用的:

\includepdf[scale=0.85, angle=90, pagecommand={}]{Assembly_process.pdf}

希望有人能帮助我。

答案1

欢迎来到 tex.se!该软件包graphicx还可以加载 pdf。(下文中的example-images 实际上是 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}

在此处输入图片描述

相关内容