LaTeX 抛出缺失 } 错误,但我看不出问题所在

LaTeX 抛出缺失 } 错误,但我看不出问题所在

正如标题所说,我真的不明白哪里缺少括号。我是 LaTeX 新手,所以我不知道这种错误是否还有其他原因。我已经将其amsmath包含在align环境中。

\documentclass{article}
\usepackage[margin=0.5in]{geometry}
\usepackage{amsfonts}
\usepackage{amsmath}

\begin{document}

\textbf{1.}\\
    \begin{align}
    (a) $f \circle g \circle h =& 2(\frac{\sqrt{x}}{1+\sqrt{x}})$\\
    (b) $h \circle g \circle =& \sqrt{\frac{2x}{1+2x}}$\\
    (c) $f \circle f =& 4x$\\
    \end{align}

\end{document}

答案1

您想要类似这样的东西吗?

方程组

\documentclass{article}
\usepackage{amsmath}
\begin{document}
  \begin{enumerate}
    \item
    \begin{align}
      f \circ g \circ h =& 2\left(\frac{\sqrt{x}}{1+\sqrt{x}}\right)\\
      h \circ g \circ =& \sqrt{\frac{2x}{1+2x}}\\
      f \circ f =& 4x
    \end{align}
  \end{enumerate}
\end{document}

相关内容