有人能帮我写这个吗?
Latex 不允许我使用 BRACES 和 ALIGN。
\begin{equation}\label{peqdef}
\begin{align}
\begin{cases}
&\textrm{div}\textbf{T}=0, && \textbf{T}=2G\textbf{E}+\lambda \textrm{tr}\textbf{E}-p\textbf{I}\\
&\textrm{div}\dot{\textbf{u}}=-\textrm{div} \textbf{j} \\
&\textrm{det}\textbf{F}=1+\textrm{tr} (\nabla \textbf{u})= 1+\upsilon c
\end{cases}
\end{align}
\end{equation}
答案1
您不能align
在方程式中使用。请aligned
改用 (或alignedat
)。并且,cases
仅使用 来获取括号就是滥用工具来完成其并非设计用于的任务。
这是一个更好的版本。我同时修复了一些其他问题:
\documentclass{article}
\usepackage{amsmath}
\DeclareMathOperator{\Div}{div}
\DeclareMathOperator{\tr}{tr}
\begin{document}
\begin{equation}\label{peqdef}
\left\{
\begin{aligned}
\Div\mathbf{T}&=0,
& \mathbf{T}&=2G\mathbf{E}+\lambda \tr\mathbf{E}-p\mathbf{I}\\
\Div\dot{\mathbf{u}}&=-\Div \mathbf{j} \\
\det\mathbf{F}&=1+\tr (\nabla \mathbf{u})= 1+\upsilon c
\end{aligned}
\right.
\end{equation}\end{document}
\left\{
注意…的用法\right.
。