我正在使用報告類,並且希望消除附錄頁面而不消除實際的各個附錄。我有我想要的附錄的大寫(全部大寫)。我在嘗試:
- 刪除附錄頁(第 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
行中的頁面選項似乎是導致額外分隔頁的原因。您可能只想使用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}