「パート」を「章」に変更する方法

「パート」を「章」に変更する方法

amsartドキュメントクラスを使用しています。

amsartの構造順序は、パート -> セクション -> サブセクション -> サブサブセクションです。

質問: \partLaTeX で「パート」ではなく「章」が表示されるようにするには、どのように変更すればよいでしょうか?


下記のアイデアを試してみましたが、私のラテックスでは機能しません... :(

以下に最低限の動作例とスクリーンショットを示します。

\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

関連情報