如何将带有彩色单元格的 Excell csv 文件读入表格或表格并显示颜色格式?

如何将带有彩色单元格的 Excell csv 文件读入表格或表格并显示颜色格式?

这是我将 csv 文件读入表格的代码,但它不保留颜色格式:

\csvreader[tabular={|c|c|r|c|c|c|c|c|c|},
before reading = \begin{adjustbox}{width=\columnwidth},
    after reading=\end{adjustbox},
    table head=\hline \textbf{WT} & \textbf{Beam} & \textbf{Threshold} &\textbf{500m} &\textbf{1000m} &\textbf{1500m}&\textbf{2000m}&\textbf{3000m} &\textbf{4000m}\\\hline,
    late after line=\\\hline]%
{StHubert/RCS30.csv}{WTname=\wt, Beam=\b, Threshold=\thres, 500=\v,1000=\d, 1500=\dv, 2000=\t, 3000=\tv, 4000=\dr}
{\wt & \b & \thres[dBw] &\v & \d &\dv &\t &\tv&\dr}

作为示例,我添加了带有填充单元格的 csv 文件图像。

带有已填充单元格的 CSV 文件

相关内容