\usepackage{titlesec}
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
\titleformat{\paragraph} [hang] {\normalfont\normalsize\bfseries {\theparagraph} {1em} {} %%
当我\paragraph
在 下方使用 时\subsubsection
,\paragraph
之前没有章节编号。
例如,如果我有
\subsubsection{Yo}
\paragraph{Test}
PDF 看起来会像这样:
4.4.3 Yo
Test
但我想要的是:
4.4.3 Yo
4.4.3.1 Test
有人知道该怎么做吗?
答案1
感谢您的评论,它帮助我调试了问题!
我使用了乳胶模板,发现了这一点:
\addtocounter{secnumdepth}{1}
\renewcommand{\theparagraph}{\hspace*{-1em}}
我是 Latex 的新手,所以不确定它的作用是什么,但我将它们注释掉,就解决了我的问题。