etc 목록 없이 챕터를 사용할 수 있는 방법이 있나요 Chapter 1
? 번호가 아닌 장 이름만 표시되기를 원합니다.
답변1
시도해 보셨나요 \chapter*{here your chapter}
?
기억하다: 이를 사용하고 tableofcontents
각 섹션별로 빌드하려면 a를 addcontentsline
추가해야 합니다. 보다이 페이지
건배
답변2
표준 클래스( book
, report
) 중 하나를 사용하는 경우 다음을 사용할 수 있습니다.titlesec
포장하고 다음과 같이 말하세요
\documentclass{book}
\usepackage{titlesec}
\titleformat{\chapter}[display]
{\normalfont\huge\bfseries}{}{0pt}{\Huge}
\titlespacing*{\chapter}
{0pt}{10pt}{40pt}
\begin{document}
\tableofcontents
\chapter{Test Numbered Chapter}
\chapter*{Test Unnumbered Chapter}
\end{document}
위의 코드는 ToC 항목의 번호를 제거하지 않습니다. 이 숫자를 제거하려면 서문에 추가하세요.
\usepackage{titletoc}
\titlecontents{chapter}[0em]{\bfseries}{}{}
{\hfill\contentspage}