我正在尝试写一个方程,但是我不断收到“方程式为一时的控制序列错误”,我似乎无法弄清楚错误是什么。你们有人看到方程式中的错误吗?
\documentclass[a4paper,12pt]{article}
\begin{document}
$
\theta^* = \bf{argmin}\underbrace{{1\over2}(g-F(\theta))^T(g-F(\theta))}_\text{f(\theta)}
$
\end{document}
答案1
首先你需要amsmath
文本命令包。然后您应该使用\mathbf{}
粗体数学和\textbf{}
文本。\bf,\it
等已经过时了。我使用 \textit 或 \it、\bfseries 或 \bf 等有关系吗
然后\text{}
用于非数学内容但\theta
需要数学模式。
因此总体而言,以下内容有效。
\documentclass[a4paper,12pt]{article}
\usepackage{amsmath}
\begin{document}
$
\theta^* = \mathbf{argmin}\underbrace{{1\over2}(g-F(\theta))^T(g-F(\theta))}_{\text{f}(\theta)}
$
\end{document}