我试图让下面的方程显示一个带有 4 个条件方程的大花括号,但我的乳胶给出了错误“未找到文件”。
\documentclass{article}
\usepackage{amsmath}
\begin{equation}
H^'(\theta)_{mn}=
\begin{cases}
\frac{x_i-x_j}{d_{ij}}, & \text{if \theta_n = x_i}.\\
\frac{x_j-x_i}{d_{ij}}, & \text{if \theta_n = x_j}.\\
\frac{y_i-y_j}{d_{ij}}, & \text{if \theta_n = y_i}.\\
\frac{y_j-y_i}{d_{ij}}, & \text{if \theta_n = y_j}.\\
0, & \text{otherwise}.
\end{cases}
\end{equation}
\end{document}
答案1
多个错误(例如,命令参数中没有 和 数学\begin{document}
)和样式问题。以下是对我来说没问题的:H^'
\text
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
H'(\theta)_{mn}=
\begin{cases}
(x_i-x_j)/d_{ij}, & \text{if } \theta_n = x_i.\\
(x_j-x_i)/d_{ij}, & \text{if } \theta_n = x_j.\\
(y_i-y_j)/d_{ij}, & \text{if } \theta_n = y_i.\\
(y_j-y_i)/d_{ij}, & \text{if } \theta_n = y_j.\\
0, & \text{otherwise}.
\end{cases}
\end{equation}
\end{document}