我有一个 .csv,内容如下:
N,A,B
64,50,64
128,128,120
使用以下方式阅读:
\begin{table}[ht]
\footnotesize
\DTLloaddb{mytable}{mytable.csv}% Load CSV data
\centering
\resizebox{.8\textwidth}{!}{\begin{tabular}{ccc}
\toprule
N & A & B \\ \midrule
\DTLforeach{mytable}{%
\Nscol=N,
\AUcol=A,
\Bcol=B%
}{%
\Nscol & \AUcol & \Bcol \\
}
\\[-\normalbaselineskip] \bottomrule
\end{tabular}}
\end{table}
我想有条件地改变颜色每个细胞, 就像是:
If A<N
textcolor{red}{\Acol}
else
textcolor{green}{\Acol}
这有可能吗?我看到有函数可以有条件地检查第一行、最后一行和奇数行,但不是专门针对每个单元格的。
谢谢您的帮助。