"부분"을 "장"으로 변경하는 방법

"부분"을 "장"으로 변경하는 방법

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.

관련 정보