可能重复:
在表格中使用 \frac
我正在尝试代码齿轮渲染器,但它不起作用:
\begin{tabular}{cc} \hline \frac{x}{2} & \frac{2}{x} \\ \hline \end{tabular}
我该如何解决这个问题?谢谢!
答案1
使用$...$
或表格列定义
\documentclass[12pt]{article}
\usepackage{array,amsmath}
\def\xstrut{\rule[-2ex]{0pt}{5ex}}
\begin{document}
\begin{tabular}{ c >{\xstrut$}c<{$}} \hline
$\frac{x}{2}$ & \frac{2}{x} \\ \hline
$\dfrac{x}{2}$ & \dfrac{2}{x} \\ \hline
\end{tabular}
\end{document}