使用 amsbooks 进行 ToC 格式化

使用 amsbooks 进行 ToC 格式化

我正在格式化我的论文,模板使用 amsbooks。我想从目录中删除“目录”,并将目录中“表格列表”和“图片列表”的字体更改为“表格列表”“图片列表”(基本上让它显示为章节而不是节)。

我还需要缩进标题“目录”,以便它与列表的其余部分对齐。以下是我目前拥有的内容以及指南 pdf 中指定的内容:

在此处输入图片描述

在此处输入图片描述

答案1

这是一个可能的解决方案。

\documentclass{amsbook}

\renewcommand{\contentsname}{TABLE OF CONTENTS\hspace*{\fill}}
\renewcommand{\listfigurename}{LIST OF FIGURES}
\renewcommand{\listtablename}{LIST OF TABLES}
\makeatletter
\renewcommand{\tocchapter}[3]{%
  \indentlabel{\@ifnotempty{#2}{\ignorespaces\MakeUppercase{#1} #2.\quad}}#3}
\makeatother

\begin{document}

\frontmatter

\tableofcontents

\chapter*{DEDICATION}

A dedication

\chapter*{ACKNOWLEDGMENTS}

Some acknowledgments

\chapter*{ABSTRACT}

An abstract

\listoffigures

\listoftables

\mainmatter

\chapter*{INTRODUCTION}

An introduction

\chapter{First}
\section{A section}
\section{Another section}

\chapter{Second}

\end{document}

在此处输入图片描述

相关内容