在 LaTeX 的表格中输入多行方程

在 LaTeX 的表格中输入多行方程

谁知道如何multiline在表格中写出方程式?我正在使用以下代码:

\begin{table} 
\centering 
\begin{tabular}{|c| c| c|}
\hline %inserts horizontal line

&f1& f2 \\ [0.5ex] 
\hline 
a& b& c\\ \hline 
d& e & f  \hline 
\end{tabular}
\label{label 1}
\end{table}

be是两行或三行方程。我该如何将它们写在表格中?

答案1

\documentclass[letterpaper]{article}
\usepackage{amsmath,amssymb}
\begin{document}
\begin{table} 
\centering 
\renewcommand{\arraystretch}{1.3}
\begin{tabular}{|c| c| c|}
\hline %inserts horizontal line
&f1& f2 \\[0.5ex] 
\hline 
a& $\begin{array} {lcl} f(x) & = & (a+b)^2 \\ & = & a^2+2ab+b^2 \end{array}$ & c\\ 
\hline 
d& $\begin{array} {r@{}l@{}} f(x) & {}= (a+b)^2 \\ & {}= a^2+2ab+b^2 \end{array}$ & f\\    \hline 
g& $\begin{aligned} f(x) & = (a+b)^2 \\ & = a^2+2ab+b^2 \end{aligned}$ &h \\ \hline 
\end{tabular}
\label{label 1}
\end{table}
\end{document}

上述代码产生的结果:

在此处输入图片描述

我知道这不是最好的,但我希望它能回答你的问题。我根据 Peter Grill 的建议编辑了答案。这是一个更好的数学展示。

答案2

我认为这\displaystyle就是你要找的:

\documentclass{article}
\begin{document}

\begin{tabular}{|c|c|c|}
a& b& c\\
$v=mv^2/2$ & $\frac{mv^2}{2}$ & $\displaystyle \frac{mv^2}{2}$
\end{tabular}

\end{document}

相关内容