設定 Latex 報告章節、章節、小節標題樣式的格式

設定 Latex 報告章節、章節、小節標題樣式的格式

我正在寫我的論文,章節、章節和小節的說明如下。

- Chapter heading :All Capital—14 Font size, Bold
- Section heading :Title case-12 Font size, Bold
- Sub-section heading :Sentence case-12 Font size, Bold
- Body text :Sentence case - 12 Font size

此外,我還有「小節」。我正在嘗試使用 來實現這些titlesec。我的問題是如何將章節標題大寫?如何實現「標題大小寫」和「句子大小寫」?提前致謝。

\usepackage{titlesec}
\titleformat{\chapter}{\normalfont\large\bfseries}{\thechapter}{14pt}{\large}
\titleformat{\section}
{\normalfont\bfseries}{\thesection}{12pt}{}
\titleformat{\subsection}
{\normalfont\bfseries}{\thesubsection}{12pt}{}
\titleformat{\subsubsection}
{\normalfont\bfseries}{\thesubsubsection}{12pt}{}

相關內容