我正在尝试使用\includepdf
. 问题是 Latex 将 pdf 的所有站点放在文档的一页上(彼此重叠)。我对那个有点迷茫,没有找到任何解决方案。
\begin{figure}[H]
\includepdf[landscape,pages={1-6}]{Zeichnungen/Motor}
\label{Motor}
\end{figure}
如果要使用\includepdf
,请不要放在图形环境中。
如果您确实想使用图形环境,请使用好旧的\inlcudegraphics
\documentclass{article}
\usepackage{graphicx}
\usepackage{pdfpages}
\usepackage{pgffor}
\begin{document}
with pdfpages:
\includepdf[pages={1-6}]{example-image-duck}
\clearpage
with good old graphicx
\foreach \x in {1,...,6}{
\begin{figure}[htbp]
\includegraphics[page=\x]{example-image-duck}
\label{Motor-\x}
\end{figure}
}
\end{document}