如何仅对目录中的章节标题和文档中选定章节的进行部分编辑?

如何仅对目录中的章节标题和文档中选定章节的进行部分编辑?

我有一个目录,其中包含多个部分、子部分和子子部分。我希望在整个目录和文档中保持这些部分的格式相同(部分除外)Appendix

举例来说,请考虑以下两个屏幕截图:

示例 1——附录 A

请注意(1)前面的Appendix A。我想从顶部屏幕截图的标题和底部屏幕截图的目录条目中删除它。但是,我想让所有不是 的部分的这些条目保持不变Section VI. Appendices

示例 2——目录

我怎样才能实现这个目标?我曾尝试使用\subsection*{Appendix A - ...}但这会从目录中删除该条目。

为了以防万一有帮助,我正在使用的序言(包含所有附加包)如下:

\documentclass{report}
\usepackage[labelfont=bf,textfont=md]{caption}
\usepackage{titlesec}
\usepackage{setspace}
\usepackage{tocloft}
\usepackage{xcolor}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{array}
\usepackage{float}
\usepackage[margin=1.0in]{geometry}
\usepackage{subfig}
\usepackage{hyperref}

\usepackage{sectsty}

\setcounter{tocdepth}{4}
\setcounter{secnumdepth}{4}

\sectionfont{\LARGE}
\subsectionfont{\Large}
\subsubsectionfont{\large}
\paragraphfont{\large}

\usepackage{mathtools}
\DeclarePairedDelimiter\ceil{\lceil}{\rceil}
\DeclarePairedDelimiter\floor{\lfloor}{\rfloor}

\newenvironment{conditions}
  {\par\vspace{\abovedisplayskip}\noindent\begin{tabular}{>{$}l<{$} @{${}={}$} l}}
  {\end{tabular}\par\vspace{\belowdisplayskip}}

\pagenumbering{roman}
\renewcommand\cftchapaftersnum{.}
\renewcommand\cftsecaftersnum{.}

\setcounter{tocdepth}{4}
\setcounter{secnumdepth}{4}

\renewcommand\thechapter{\alph{chapter}}
\renewcommand\thesection{\Roman{section}}
\renewcommand\thesubsection{(\arabic{subsection})}
\renewcommand\thesubsubsection{(\alph{subsubsection})}

\setcounter{tocdepth}{4}
\setcounter{secnumdepth}{4}
\begin{document}

我对这个 stackexchange 和 LaTeX 还比较陌生。如果我可以改进这个问题,请告诉我。

答案1

经过几天的时间搜索,但解决方案很简短且易于实施。

\newpage 

\section{Appendix}

\subsection*{Appendix A - Methods to Optimize Speed Distribution Fit}
\addcontentsline{toc}{subsection}{Appendix A - Methods to Optimize Speed Distribution Fit}

<Put body here>

相关内容