答案1
这是第一个想法:
\documentclass{article}
\usepackage{etoolbox}
\newcommand{\emphsection}[2]{% emhasizes empty sections
\ifstrequal{ #2}{ }{\section[empty: #1]{#1} #2}{\section{#1} #2}%
}
\begin{document}
\emphsection{Emptysection}{}
\emphsection{Section 1}{%
This section won't be emphasized
}
\emphsection{Section 2}
Neither this one.
\tableofcontents
\end{document}
答案2
也许这会有用
\部分*{}
这将创建一个具有与正常部分相同间距的新空白部分。