如何在表格数学模式下输入?

如何在表格数学模式下输入?
\hline
    a & b & c & a/b & sqrt a/b & N1/N2 \bigstrut\\

答案1

例如,环境array(在数学模式下):

\documentclass{article}
\begin{document}
  $\begin{array}{cccccc}
  a & b & c & a/b & \sqrt{a/b} & N_1/N_2
  \end{array}$
\end{document}

环境数组的结果

环境中的明确数学模式设置tabular

\documentclass{article}
\begin{document}    
  \begin{tabular}{cccccc}
  $a$ & $b$ & $c$ & $a/b$ & $\sqrt{a/b}$ & $N_1/N_2$
  \end{tabular}
\end{document}

表格结果

如果单元格属于矩阵:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
  $\begin{matrix}
  a & b & c & a/b & \sqrt{a/b} & N_1/N_2
  \end{matrix}$
\end{document}

环境矩阵的结果

答案2

当您编写表格时,每个条目都只是普通文本,因此您可以在每个条目中写入普通文本:

\begin{tabular}{ccc}
I'm totally text    &     Me To    &    I'm Also text\\
This means that     &     You can  &    Easily just put\\
Math in each entry!  &    $\alpha$ &    $ \frac{cool math}{here}$
\end{tabular}

生成:

在此处输入图片描述

我删除了代码中的最后一行,因为它比我想象的更错误

相关内容