因此,我想在表格中显示案例。这是我的 Latex 文档,我尽可能将其最小化以重现该问题。显然,它说:
(./redundant.aux)
! Missing $ inserted.
<inserted text>
$
l.12 \begin{cases}
我不明白。cases 环境在表格之外完全正常工作。我的 Latex 代码有什么问题?我该如何修复?
\documentclass[11pt, fullpage, lefteqn]{article}
\usepackage{amsmath}
\begin{document}
\begin{table}[h!]
\centering
\begin{tabular}{|c|c|}
\hline
$a^2 - x^2$
&
\[
\begin{cases}
a \sin x \\ a \cos x
\end{cases}
\] & \\
\end{tabular}
\end{table}
\end{document}
编辑:当我尝试将c
s 更改为p
s 时,我得到了
! Missing number, treated as zero.
<to be read again>
|
l.9 $
a^2 - x^2$
答案1
垂直显示材料\[
需要位于 par(垂直)模式列中,例如p
或m
\documentclass[11pt,
%fullpage, % article does not have fullpage or lefteqnoptions
%lefteqn
leqno
]{article}
\usepackage{amsmath}
\usepackage{array}% for m
\begin{document}
\begin{table}[htp] % [h!]
\centering
\begin{tabular}{|c|m{5cm}|}
\hline
$a^2 - x^2$
&
\[
\begin{cases}
a \sin x \\ a \cos x
\end{cases}
\] \\
\hline
\end{tabular}
\end{table}
\end{document}