我创建了一个带有目录的报告,并将章节标题格式化为特定格式:
\documentclass[12pt]{report}
\usepackage[compact]{titlesec}
\titleformat{\chapter}[display]{\normalfont\bfseries}{}{1ex}{ \LARGE \thechapter \ \ }
\begin{document}
\tableofcontents
\chapter{First Chapter}
\section{Introduction}
\section{Data}
\chapter{Second Chapter}
\section{Introduction}
\section{Data}
\end{document}
目录如下:
我想格式化目录后的章节标题(1、2 等),但不更改目录“目录”标题的格式。我该怎么做?我希望“0 目录”按默认设置显示“目录”。
答案1
将此行添加到序言中
\titleformat{name=\chapter, numberless}[block]{\normalfont\bfseries\LARGE}{}{0em}{}
并用更正确的
\titleformat{\chapter}[block]{\normalfont\bfseries\LARGE }{\thechapter}{1em}{}