從 pgfplotstable 到標準表

從 pgfplotstable 到標準表

我喜歡用它pgfplotstable來排版我的csv表格。但是,我必須使用基本標準table環境提交論文。

有沒有辦法將產生的表格匯出pgfplotstable.tex不需要pgfplotstable包的表?

如果沒有,我可能會將我的表匯出為.pdf使用standalone類,但我更喜歡更簡潔的方法。

答案1

pgfplotstable產生一個tabular環境,​​然後由 LaTeX 處理。透過指定outfile將其匯出到一個文件,然後可以將其匯入到原始文件中(使用\input{filename})或直接複製到原始表環境中。

這個例子outfile或在說明書中搜尋pgfplotstable

相關內容