我正在使用 ACM 会议模板。我无法添加\subsubsubsection
,也\par
无法添加数字。我该如何解决这个问题?你能帮我添加另一个级别部分吗?
这是我的示例:
\documentclass[sigconf, anonymous]{acmart}
\usepackage{booktabs}
\usepackage{array, makecell}
\begin{document}
\title{Title}
\begin{abstract}
Abstract
\end{abstract}
\maketitle
\section{This is a Section} Some text here.
\subsection{This is a Subsection} Some text here.
\subsubsection{This is a subsubsection} Text here.
\par{This is par. But I need a third level section as 1.1.1.1}
\end{document}
答案1
将我的评论变成答案:
您可以使用计数器控制有多少个分段命令被编号secnumdepth
。如果设置为4
或更大,\paragraph
将产生一个数字。但请注意,\paragraph
默认情况下不是标题,而是打印在该段落开头的同一行上。
该命令\par
与 TeX 中的空白行相同,表示它结束前一段(文本块而不是分段层)。
\documentclass[sigconf, anonymous]{acmart}
\usepackage{booktabs}
\usepackage{array, makecell}
\expandafter\newcommand\csname r@tocindent4\endcsname{4in}
\setcounter{secnumdepth}{4}
\begin{document}
\title{Title}
\begin{abstract}
Abstract
\end{abstract}
\maketitle
\section{This is a Section} Some text here.
\subsection{This is a Subsection} Some text here.
\subsubsection{This is a subsubsection} Text here.
\paragraph{This is par. But I need a third level section as 1.1.1.1}
\end{document}