如何将“部分”改为“章节”

如何将“部分”改为“章节”

我正在使用amsart文档类。

amsart 中的结构顺序为部分 -> 章节 -> 小节 -> 小子节

我的问题是:我该如何修改\part才能让乳胶显示“章节”而不是“部分”?


我尝试了下面提供的想法,但它在我的乳胶中不起作用...... :(

请参阅以下最小工作示例和屏幕截图

\documentclass[english, reqno, 9pt]{amsart}
\usepackage{geometry}            % See geometry.pdf to learn the layout options. There are lots.
%\geometry{letterpaper}                   % ... or a4paper or a5paper or ... 
%\geometry{landscape}                % Activate for for rotated page geometry
%\usepackage[parfill]{parskip}    % Activate to begin paragraphs with an empty line rather than an indent
\usepackage{amssymb,amsmath,amsthm,amsfonts,color}
\usepackage{mathrsfs,dsfont, comment,mathscinet}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{mathtools}
\usepackage{babel}
\usepackage{enumerate,esint}
\usepackage{natbib}


\usepackage{indentfirst}
\usepackage{bm}
\usepackage{picinpar}
\usepackage{lipsum}


\usepackage[toc,page]{appendix}

\usepackage{etoolbox}
\usepackage{authblk}
\usepackage{amsaddr}


\usepackage{caption}
\usepackage{subcaption}




%-----------------------------------------------------------------------------------

\renewcommand{\partname}{Chapter}
\newcommand{\chapter}{\part}

%----------------------------------------------------------------------------------------------


%----------------------------Special for this paper ------------------------------





\title{test}

\begin{document}

\maketitle

\thispagestyle{empty}%this command remove the page number at the title page

\tableofcontents


\chapter{Introduction}

\end{document}

在此处输入图片描述

答案1

调整\partname并为自己创建一个宏,\chapter以便事情连续有意义(...看看我在那里做了什么......?):

在此处输入图片描述

\documentclass{amsart}

\renewcommand{\partname}{Chapter}
\newcommand{\chapter}{\part}

\begin{document}

\tableofcontents

\chapter{A chapter}
\section{A section}
\subsection{A subsection}
\subsubsection{A subsubsection}

\end{document}

如果你正在加载babel,然后你可以使用

\newcommand{\chapter}{\part}
\AtBeginDocument{\renewcommand{\partname}{Chapter}}

或者

\addto\captionsenglish{\renewcommand{\partname}{Chapter}}

更新\partname

相关内容