我正在使用报告类,并希望删除附录页面而不删除实际的单个附录。我已将附录大写(全部大写)。我正在尝试:
- 删除附录页(第 5 页)
- 从书签中删除附录页面,并从上一个附录中取消嵌套各个附录
part
- 从目录中删除附录页面
因此目前底部的设置如下所示:
书签
目录
页面
我希望它看起来像(我剪切并粘贴了图像使它们看起来像这样;即,我没有制作所需输出图片的代码)...
书签
目录
\documentclass[12pt]{report}
\usepackage[T1]{fontenc}
\usepackage{filecontents}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=apa, backend=biber]{biblatex}
\addbibresource{biblatex-examples.bib}
\DeclareLanguageMapping{american}{american-apa}
\usepackage{setspace}
\usepackage{bookmark}
\usepackage[title,titletoc,toc,page]{appendix}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=blue,
filecolor=magenta,
urlcolor=blue,
citecolor=blue,
}
\setcounter{secnumdepth}{0}
\usepackage{tocloft}
\renewcommand{\cftchapleader}{\cftdotfill{\cftdotsep}}
\begin{document}
\nocite{*}
\newpage
\pdfbookmark[section]{\contentsname}{toc}
\tableofcontents
\part{Top Level}
\chapter{First Chapter}
Foo
\chapter{Last Chapter}
Bar
%% Appendices
\begin{appendices}
\renewcommand{\appendixname}{APPENDIX}
\chapter{Foo}
some text
\chapter{Bar}
some more text
\end{appendices}
%% References
\newpage
\singlespacing
\bookmarksetup{startatroot}
\addcontentsline{toc}{chapter}{REFERENCES}
\renewcommand{\bibname}{REFERENCES}
\printbibliography
\end{document}
编辑
使用@barbara beeton 的建议(并转储附录包):
\appendix
\renewcommand{\appendixname}{APPENDIX}
\chapter{Foo}
some text
\chapter{Bar}
some more text
但是这会删除APPENDIX
前缀,并且不会将各个附录书签从最后一个书签中取消嵌套part
(它们位于下方Top Level
),因此它们看起来更像REFERENCES
答案1
根据@MikeRenfro 的评论:
通过附录文档的第 2 节,似乎您
\usepackage
行中的 page 选项导致了额外的分隔符页面。您可能只想使用title
和titletoc
选项。
我还\bookmarksetup{startatroot}
为每个附录添加了取消嵌套的功能part 1
:
\documentclass[12pt]{report}
\usepackage[T1]{fontenc}
\usepackage{filecontents}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=apa, backend=biber]{biblatex}
\addbibresource{biblatex-examples.bib}
\DeclareLanguageMapping{american}{american-apa}
\usepackage{setspace}
\usepackage{bookmark}
\usepackage[title,titletoc]{appendix}
\renewcommand{\addappheadtotoc}{}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=blue,
filecolor=magenta,
urlcolor=blue,
citecolor=blue,
}
\setcounter{secnumdepth}{0}
\usepackage{tocloft}
%\renewcommand{\cftpartleader}{\cftdotfill{\cftdotsep}}
\renewcommand{\cftchapleader}{\cftdotfill{\cftdotsep}}
\begin{document}
\nocite{*}
\newpage
\pdfbookmark[section]{\contentsname}{toc}
\tableofcontents
\part{Top Level}
\chapter{First Chapter}
Foo
\chapter{Last Chapter}
Bar
%% Appendices
\begin{appendices}
\renewcommand{\appendixname}{APPENDIX}
\bookmarksetup{startatroot}
\chapter{Foo}
some text
\bookmarksetup{startatroot}
\chapter{Bar}
some more text
\end{appendices}
%% References
\newpage
\singlespacing
\bookmarksetup{startatroot}
\addcontentsline{toc}{chapter}{REFERENCES}
\renewcommand{\bibname}{REFERENCES}
\printbibliography
\end{document}