数学家协会
\documentclass{article}
\usepackage{booktabs}
\usepackage{pgfplotstable}
\usepackage{textcomp}%%% for \textnumero
\begin{document}
\pgfplotstableread{
N Ans
1 -36
2 33
3 -52
4 -22
5 33
6 38
7 48
8 -100
}\mytable
\pgfplotstabletranspose[string type,
colnames from=N,
input colnames to=N
]\mytablenew{\mytable}
\pgfplotstabletypeset[
every head row/.style={
before row=\toprule,
after row=\midrule
},
every last row/.style={
after row=\bottomrule
},
string type]{\mytablenew}
\end{document}
我想\textnumero
在最终表格中使用符号代替 N。请问有什么想法吗?
答案1
插入于\pgfplotstabletypeset[
columns/N/.style={column name=\textnumero},