我想将多页 pdf 文件包含到图形环境中,因为它作为附录中的图形之一。
我知道通常也可以使用 pdfpages 包来包含这样的文件,但我需要它有一个标题,就像我所有的其他展品一样。
因此我尝试了以下代码,但似乎不起作用,因为输出只有一页:
\documentclass[12pt, a4paper] {article}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{graphicx}
\begin{document}
\begin{figure}[h!]
\centering
\includegraphics[page=1,width=\textwidth] {./ex_janaletter}\\
\includegraphics[page=2,width=\textwidth] {./ex_janaletter}\\
\includegraphics[page=3,width=\textwidth] {./ex_janaletter}\\
\includegraphics[page=4,width=\textwidth] {./ex_janaletter}\\
\includegraphics[page=5,width=\textwidth] {./ex_janaletter}\\
\caption[Jana Partners' Letter to Management Board of QEP Resources]{Letter by Jana Partners to the BOD of QEP Resources on October 21, 2013.}
\label{fig: janaletter}
\end{figure}
\end{document}
输出如下:
那么第 2 页至第 5 页似乎没有显示?我做错了什么?
非常感谢您的帮助,谢谢!