如何显示空白部分?

如何显示空白部分?

我想知道这个问题的反面:

当部分为空时隐藏部分标题

是否可以不隐藏 LaTeX 中的空白部分,而是只显示空白部分或以某种方式表明目录中的某个部分是空的?

答案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

也许这会有用

\部分*{}

这将创建一个具有与正常部分相同间距的新空白部分。

相关内容