在 Latex 中打印空单元格

在 Latex 中打印空单元格

我有一个来自 Python 程序的 csv 文件中存储的数组,如下所示:

宽度 = [ 1, 2, , 4, , 5]

我想在 Latex 中将数组打印为:

W
1
2

4

5

我已尝试使用以下代码:

\pgfplotstableread[col sep=tab ]{w.csv}{\table}

\pgfplotstabletypeset[ precision= 6,
begin table=\begin{longtable},
    end table=\end{longtable},
display columns/0/.style={column name=$x_n$},
]{\table}

但它不会打印空字段。而是打印如下内容:

W
1
2
4
5

如何打印带有空格的 csv 文件中的数据?

相关内容