此代码:
from pylatex import (
Tabular,
)
# make tabular
doc = Tabular('lcc', booktabs=True)
doc.add_row('A','B','C')
doc.add_hline()
doc.add_row((1, 2, 3))
doc.generate_tex("my_table")
生成my_table.tex
:
\begin{tabular}{@{}lcc@{}}%
\toprule%
A&B&C\\%
\midrule%
1&2&3\\\bottomrule%
%
\end{tabular}
如您所见,在tabular
参数中,列对齐前面和后面都有@{}
。
如果我不使用 ,就不会发生这种情况booktabs=True
,但我需要此选项来添加\toprule
、\midrule
和\bottomrule
。
我怎样才能避免这种@{}
情况?