答案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}