此代码:
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
。
我怎样才能避免这种@{}
情况?
不要删除它们,而是添加更多
@{...}
。听起来很奇怪,但你可以使用它们来添加默认的列填充:或者,使用 tabularx 并包含
@{}
。它将确保 tabularx 中的文本与周围文本很好地对齐: