Latex 中的方程式

Latex 中的方程式

我需要做的是:三个方程(通过 align* 通用环境)将与“=”符号对齐,以及文本中的至少一个方程(所谓的“内联”方程;提示:$)。包括使用指数、幂、根、积分、导数和矩阵。我试过这样做,但没有成功

\begin{equation}
 \label{eq1}
 \begin{split}
 $f(x) & = x^3+ \sqrt{x^3}$
 \begin{matrix}
 & = 1 & 0
 0 & 1
 \end{matrix}
 \end{split}
 \end{equation}

答案1

在此处输入图片描述

\documentclass{article}

\usepackage{amsmath}

\begin{document}

See the definition of functions~$f$ and~$g$, as well as the matrix~$A$ below:
\begin{align*}
  f(x) &= a_1 x^2 + \sqrt{b x} - \int_0^4 c \, \mathrm{d}x \\
  g(x) &= \dfrac{\mathrm{d}}{\mathrm{d}x} \biggl( \dfrac{b_2^2}{x} \biggr) -
    \dfrac{\partial f}{\partial c} \\
      A &= \begin{pmatrix}
        i_{1,1} & j_{1,2} & k_{1,3} \\
        j_{2,1} & k_{2,2} & i_{2,3} \\
        k_{3,1} & i_{3,2} & j_{3,3}
     \end{pmatrix}
\end{align*}

\end{document}

相关内容