我搜索了很多地方,但找不到与我的情况足够接近的东西。基本上,我搜索了其他建议使用tabu
而不是的帖子,tabular
因为我不得不\(content\)
在有数学表达式的地方使用。
我如何添加相等的间距以便我可以阅读文本。
其次,我想沿对角线分割 sin 上方的单元格,以便插入描述第一行和第一列的文本。谢谢!
\documentclass{article}
\usepackage{mathtools}
\usepackage{tabu}
\newcommand{\degree}{^\circ}
\begin{document}
\(
\begin{tabu}{|c|c|c|c|}
& 30\degree & 45\degree & 60\degree \\ \hline
\sin \theta & \dfrac{1}{2} & \dfrac{\sqrt{2}}{2} & \dfrac{\sqrt{3}}{2} \\ \hline
\cos \theta & \dfrac{\sqrt{3}}{2} & \dfrac{\sqrt{2}}{2} & \dfrac{1}{2} \\ \hline
\tan \theta & \dfrac{\sqrt{3}}{3} & 1\vphantom{\dfrac{\sqrt{2}}{2}} & \dfrac{1}{2} \\
\end{tabu}
\)
\end{document}
答案1
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\(
\begin{tabular}{|c|c|c|c|}\hline
& 30 & 45 & 60 \\ \hline
sin $\theta$ & $\frac{1}{2}$ &$ \frac{\sqrt{2}}{2}$ & $\frac{\sqrt{3}}{2}$ \\ \hline
cos $\theta$ & $\frac{\sqrt{3}}{2}$ & $ \frac{\sqrt{2}}{2}$ & $\frac{1}{2}$ \\ \hline
tan $ \theta$ & $\frac{\sqrt{3}}{3}$ & 1 &$ \frac{1}{2}$ \\\hline
\end{tabular}
\)
\end{document}
这是一个简单的程序。所有数学术语都应括在 $$ 符号中。