手動將文字列新增至從檔案載入的表中

手動將文字列新增至從檔案載入的表中

我想用來pgfplotstable排版文字檔案中儲存的一些數字。我曾經\pgfplotstableread實現過這一點並且效果很好。現在我想在上述表格中新增一列,其中包含文字條目,或更準確地說是數學條目。我認為我應該使用類似create on useor 的東西\pgfplotstablecreatecol,但我對實際如何做有點困惑。你知道我該如何改變這件事嗎

在此輸入影像描述

進入這個

在此輸入影像描述

上一張圖片是透過以下程式碼獲得的:

\documentclass{article}
\usepackage{pgfplotstable}
\usepackage{booktabs}
\usepackage{array}
\usepackage{colortbl}

\begin{document}

\begin{table}
\centering
\begin{tabular}{cccccc}\toprule
         & $c_0$     & $c_1$ \\    
$u \times 10^2$ & -3.8682 & 1.5055   \\
$v \times 10^6$ & 2.1272  & -8.3619  \\
$w \times 10^3$ & 1.1862  & -4.6269  \\\bottomrule
\end{tabular}
\caption{It should eventually look like this.}
\end{table}

\begin{table}

\pgfplotstableread{
-3.8682 1.5055
2.1272 -8.3619
1.1862 -4.6269
}\tabledon

  \centering
\pgfplotstabletypeset[header=false,
every head row/.style={
before row={%
\toprule}},
every last row/.style={
after row=\bottomrule},
display columns/0/.style={column name={$c_0$}},
display columns/1/.style={column name={$c_1$}},
/pgf/number format/precision=4,
columns
]{\tabledon}
\caption{This is my current attempt.}
\end{table}

\end{document}

答案1

您可以使用該create col/set list樣式來提供儲存格清單:

\documentclass{article}
\usepackage{pgfplotstable}
\usepackage{booktabs}

\begin{document}

\pgfplotstableread{
-3.8682 1.5055
2.1272 -8.3619
1.1862 -4.6269
}\tabledon

\pgfplotstabletypeset[
    header=false,
    every head row/.style={
        before row={%
            \toprule
        }
    },
    every last row/.style={
        after row=\bottomrule
    },
    display columns/0/.style={column name={}},
    display columns/1/.style={column name={$c_0$}},
    display columns/2/.style={column name={$c_1$}},
    /pgf/number format/precision=4,
    create on use/newcol/.style={
        create col/set list={$u \times 10^2$,$v \times 10^6$,$w \times 10^3$}
    },
    columns/newcol/.style={string type},
    columns={newcol,0,1}
]{\tabledon}

\end{document}

相關內容