我一直想调整表格中特定列中每个单元格的环境,但一直找不到简单的方法。我希望在指定每列的对齐方式时可以在表格开头执行此操作。在下面的代码中,我想让相对频率列处于数学模式,并对每种频率进行颜色编码,而不必在每个单元格中都这样做。我找到了一些解决方法,但它们非常具体且繁琐。我希望能够进行各种调整,而不仅仅是更改颜色或进入数学模式,还可以使列变为粗体或斜体等。
\documentclass{article}
\usepackage{xcolor}
\usepackage{array}
\begin{document}
\begin{tabular}{|c|c|c|c|c|}
\hline
Platelet & & Relative & Percent & Cumulative \\\
Count & Freqency & Frequency & Freqency & Frequency \\\
\hline
100-199 & 27 & 27/150=9/50 & 18\\% & 27 \\\
\hline
200-299 & 93 & 31/50 & 62\\% & 120 \\\
\hline
300-399 & 28 & 14/75 & 18.67\\% & 148 \\\
\hline
400-499 & 0 & 0 & 0\\% & 148 \\\
\hline
500-599 & 2 & 1/75 & 1.33\\% & 150 \\\
\hline
\end{tabular}
\end{document}