我有一份结构如下的 LaTeX 报告:
\documentclass[oneside,11pt]{report}
\usepackage{appendix}
\usepackage{hyperref}
\begin{document}
\begin{abstract} ... \end{abstract}
\tableofcontents
\part{Part 1}
\chapter{Chapter 1}
\chapter{Chapter 2}
\chapter{Chapter 3}
\part{Part 2}
\chapter{Chapter 3}
\chapter{Chapter 4}
\part{Part 3}
\chapter{Chapter 4}
\part{Part 4}
\chapter{Chapter 5}
\appendixpage
\appendix
\addappheadtotoc
\chapter{Appendix 1 }
\chapter{Appendix 2}
\end{document}
但是,当将此 LaTex 编译为 PDF 文件时,附录将显示为第 4 部分的一部分,而不是文档本身的独特元素,即:
有人可以提出解决这个问题的办法吗?
答案1
我假设“附录 1”和“附录 2”应出现在“附录”下。软件包bookmark
有助于将“附录”的级别提升到\part
:
\documentclass[oneside,11pt]{report}
\usepackage{appendix}
\usepackage{hyperref}
\usepackage{bookmark}
\begin{document}
\begin{abstract} ... \end{abstract}
\tableofcontents
\part{Part 1}
\chapter{Chapter 1}
\chapter{Chapter 2}
\chapter{Chapter 3}
\part{Part 2}
\chapter{Chapter 3}
\chapter{Chapter 4}
\part{Part 3}
\chapter{Chapter 4}
\part{Part 4}
\chapter{Chapter 5}
\appendix
\bookmarksetupnext{level=-1}
\addappheadtotoc
\chapter{Appendix 1 }
\chapter{Appendix 2}
\end{document}
评论:
\input{Appendices}
因缺失而被忽略Appendices.tex
。abstract
是课堂上的环境report
。