Como mudar “parte” para “capítulo”

Como mudar “parte” para “capítulo”

Estou usando amsarta classe de documento.

A ordem da estrutura no amsart é Parte -> Seção -> subseção -> subsubseção

Minha pergunta: como posso modificar \partpara que o látex mostre "Capítulo" em vez de "Parte"?


Tentei a ideia fornecida abaixo, mas não funciona no meu látex... :(

Veja abaixo um exemplo mínimo de trabalho e uma captura de tela

\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}

insira a descrição da imagem aqui

Responder1

Ajuste \partnamee crie uma macro chamada \chapterpara que as coisas façam sentido contextualmente (...viu o que eu fiz aí...?):

insira a descrição da imagem aqui

\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}

Se você estiver carregandobabel, então você pode usar

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

ou

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

atualizar \partname.

informação relacionada