错误出现在这一行:
\paragraph{ \neg A \wedge (B \vee C) }
我该如何修复它?
答案1
诸如\neq
等命令需要数学模式,即使用$...$
或切换到该模式\( ...\)
。
hyperref
在与数学模式结合使用(例如\section
,等结构化命令的参数)时必须小心\subsection
,当然\paragraph
,如果要将其包含在书签和目录中。
\documentclass{article}
\usepackage{mathtools}
\setcounter{secnumdepth}{4}
\setcounter{tocdepth}{4}
\begin{document}
\tableofcontents
\section{First}
\subsection{First}
\subsubsection{First}
\paragraph{ $\neg A \wedge (B \vee C)$ }
\end{document}