在我的论文中,附录 B 包含一些内容。接下来,我想创建一个新的附录(例如 C),并加载 PDF(见图)。由于名称附录 C 已经在图中,所以我不想在章节标题中显示它。但是我需要它在目录中。
这可能吗?
下面是我的代码示例:
\documentclass[11pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{pdfpages}
\usepackage[toc,page]{appendix}
\begin{document}
\tableofcontents
blabla \ref{app:B}
\begin{appendices}
\chapter{}
\label{Appendix B}
bla bla bla bla bla bla bla bla
\phantomsection
\addcontentsline{toc}{section}{Appendix~\ref{app:C}: C}
\label{app:B}
\includepdf[pages=1,fitpaper]{Figures/samplepdf.pdf}
\end{appendices}
\end{document}
答案1
这是报告类的一个示例。
\documentclass[11pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{pdfpages}
\usepackage[toc,page]{appendix}
\begin{document}
\tableofcontents
\begin{appendices}
\chapter[Title for TOC and header]{}
bla bla bla bla bla bla bla bla
\clearpage
\refstepcounter{chapter}%
\thispagestyle{plain}%
\chaptermark{Title for header}%
\addcontentsline{toc}{chapter}{\numberline{\thechapter}Title for TOC}
%\includepdf[pages=1,fitpaper]{Figures/samplepdf.pdf}% file not provided
\noindent\rule{\textwidth}{0.5\textheight}% replacment
\end{appendices}
\end{document}
答案2
我想提出一种替代方法:尝试裁剪您包含的 pdf 图像,并保留文档类的章节名称。
如果您只对屏幕截图中显示的图像感兴趣,您可以尝试:
\includegraphics[trim= <left> <bottom> <right> <top>,clip,width=\textwdth]{Figures/samplepdf.pdf}
您应该将要< >
裁剪的长度放在包含的 pdf 中(10mm
例如从这里开始然后一直到所需的框架)。
samplepdf.pdf
应该是一页的 pdf 文件。你可以使用一些实用程序轻松提取所需页面,例如pdftk