我有一张表格,我想让顶行更大,字体加粗。但我得到的只是:
\documentclass{article}
\begin{document}
\begin{center}
\begin{tabular}{|c|c|c|c|c|}
\hline
$\frac{a}{b}$& $\frac{a}{\Large \frac{b}{c}}$ & & & \\
\hline
& & & & \\
\hline
& & & & \\
\hline
& & & & \\
\hline
& & & & \\
\hline
& & & & \\
\hline
\end{tabular}
\end{center}
\end{document}
我怎样才能实现这个目标?
答案1
喜欢这个吗?我将其nicematrix
用于表格:
\documentclass{standalone}
\usepackage{nicematrix}
\begin{document}
\begin{NiceTabular}{|c|c|c|c|c|}
\hline
\RowStyle[cell-space-bottom-limit=3pt,cell-space-top-limit=6pt,bold]{}
$\frac{a}{b}$ & $\frac{a}{\displaystyle\frac{b}{c}}$ & text & & \\
\hline
& & & & \\
\hline
& & & & \\
\hline
& & & & \\
\hline
& & & & \\
\hline
& & & & \\
\hline
\end{NiceTabular}
\end{document}
(如果使用nicematrix
,必须至少编译三次。)
答案2
您tabularray
可以根据需要设置行高。
但是,我不明白为什么要\Large
在 中设置行高\frac
。
\documentclass{article}
\usepackage{tabularray}
\usepackage{amsmath}
\begin{document}
\begin{center}
\begin{tblr}{
colspec={*5c},
vlines, hlines,
columns={mode=math},
row{1}={1.5cm, font=\boldmath},
}
\frac{a}{b}& \frac{a}{\text{\Large$\frac{b}{c}$}} & & & \\
& & & & \\
& & & & \\
& & & & \\
& & & & \\
& & & & \\
\end{tblr}
\end{center}
\end{document}