이름 앞의 장과 섹션/하위 섹션의 번호를 제거하는 방법은 무엇입니까?

이름 앞의 장과 섹션/하위 섹션의 번호를 제거하는 방법은 무엇입니까?

나는 titlesec 패키지를 다음과 같이 사용했습니다:

\documentclass{report}
\usepackage{titlesec}

\titleformat{\chapter}{\normalfont\huge}{\thechapter.}{20pt}{\huge\it}

\begin{document}

\chapter{Name of Chapter}
\section{Name of Section}
\subsection{Subsection}

\end{document}

챕터 이름 앞의 번호를 어떻게 제거할 수 있나요? 그리고 줄 중앙에 챕터 이름을 어떻게 넣을 수 있나요? 또한 숫자 없이 섹션과 하위 섹션을 만들고 싶습니다. 내가 원하는 것은:

챕터 이름

섹션 이름

일부

숫자도 없이.

답변1

장, 섹션 등을 번호 없이 포함하려면 다음을 입력하세요.

\setcounter{secnumdepth}{-1}

당신의 서문에.

(장 이상에는 번호가 매겨져 \setcounter{secnumdepth}{0}있고 섹션 이상에는 번호가 매겨져 있습니다 \setcounter{secnumdepth}{1}.)

답변2

\centering의 형식 매개변수에 추가합니다 \titleformat. 번호 매기기를 생략하려면 장 명령에 별표를 추가하면 됩니다.

\documentclass{report}
\usepackage{titlesec}

\titleformat{\chapter}{\normalfont\huge\centering}{\thechapter.}{20pt}{\huge\it}

\begin{document}

\chapter*{Name of Chapter}
\section*{Name of Section}
\subsection*{Subsection}

\end{document}

답변3

다음을 사용할 수 있습니다.

\titleformat{\chapter}{\normalfont\huge}{}{0pt}{\filcenter\itshape}

그러나 목차에 문제가 있을 수 있습니다.

관련 정보