我使用這樣的 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}
但是,您可能會遇到目錄問題。