付録ページを削除し、個々の付録を残す

付録ページを削除し、個々の付録を残す

私はレポート クラスを使用しており、実際の個々の付録を削除せずに付録ページを削除したいと考えています。付録の大文字化は希望どおり (すべて大文字) です。次の操作を実行しようとしています。

  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行内のページ オプションが追加の区切りページの原因になっているようです。代わりに、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}

関連情報