刪除附錄頁保留單一附錄

刪除附錄頁保留單一附錄

我正在使用報告類,並且希望消除附錄頁面而不消除實際的各個附錄。我有我想要的附錄的大寫(全部大寫)。我在嘗試:

  1. 刪除附錄頁(第 5 頁)
  2. 從書籤中刪除「附錄」頁面,並取消上一個附錄中各個附錄的嵌套part
  3. 從目錄中刪除附錄頁

所以目前底部的設定如下圖所示:

書籤
在此輸入影像描述

總有機碳
在此輸入影像描述

頁數
在此輸入影像描述

我希望它看起來像(我剪切並粘貼圖像以使它們看起來像這樣;即,我沒有製作所需輸出圖片的程式碼)...

書籤
在此輸入影像描述

總有機碳
在此輸入影像描述

\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行中的頁面選項似乎是導致額外分隔頁的原因。您可能只想使用titletitletoc選項。

我還\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}

相關內容