目录 (TOC) 的对齐

目录 (TOC) 的对齐

我想让两者居中章节和章节标题作者声明。我的目的已成功实现,如 LaTeX 输出所示。但目录 (TOC) 未对齐。请提出一个简单的解决方案来对齐目录。

\documentclass[12pt]{report}
\renewcommand{\chaptername}{\centering Chapter}

\begin{document}

\tableofcontents
\chapter{ \centering Author's Declaration}

\chapter{\centering bbbbbbbbbbbbbbbbbbbbbbb}
\section{bbbbbbbbbbbbbbbb1}


\end{document} 

答案1

\centering您可以在制作目录期间“禁用” 。

\documentclass[12pt]{report}
\renewcommand{\chaptername}{\centering Chapter}

\begin{document}

{\let\centering\relax\tableofcontents}

\chapter{\centering Author's Declaration}

\chapter{\centering bbbbbbbbbbbbbbbbbbbbbbb}
\section{bbbbbbbbbbbbbbbb1}


\end{document} 

或者,您可以使用可选参数来省略\chapter目录\centering

\documentclass[12pt]{report}
\renewcommand{\chaptername}{\centering Chapter}

\begin{document}

\tableofcontents
\chapter[Author's Declaration]{\centering Author's Declaration}

\chapter[bbbbbbbbbbbbbbbbbbbbbbb]{\centering bbbbbbbbbbbbbbbbbbbbbbb}
\section{bbbbbbbbbbbbbbbb1}


\end{document} 

无论哪种情况,目录中的居中都会消失

在此处输入图片描述

相关内容