我这里有一个严重的问题...有这样的格式:
\titleformat{\section}
{\color{Mahogany}\normalfont\Large\bfseries}
{\color{Mahogany}\thesection}{1em}{}
\titleformat{\subsection}
{\color{Bittersweet}\normalfont\Large\bfseries}
{\color{Bittersweet}\thesection}{1em}{}
\titleformat{\subsubsection}
{\color{BurntOrange}\normalfont\Large\bfseries}
{\color{BurntOrange}\thesection}{1em}{}
%-----------------------
\tableofcontents
\newpage
\section{The awesome section}
Some useful text.
\subsection{The awesome subsection}
Some more useful text.
因此,我现在期望部分格式如下:
1 The awesome section
1.1 The awesome subsection
但我得到的是:
1 The awesome section
1 The awesome subsection
有人有这个问题的解决方案吗?
谢谢
答案1
您已定义所有标题使用章节计数器
\titleformat{\subsection}
{\color{Bittersweet}\normalfont\Large\bfseries}
{\color{Bittersweet}\thesection}{1em}{}
\subsection
想要使用\thesubsection
并且同样地\subsubsection
。