Pandas to_latex - 格式 table 出口或背页的宽度
Pandas to_latex - format table width at export or in overleaf
我正在将 pandss 数据框导出为我的背面项目的 tex 文件,如下所示:
df.to_latex('df.tex')
当我将文件导入我的项目时:
\begin{table}[H]
\centering
\input{df}
\end{table}
它不适合页面。
我想知道在使用 \input
.
导入文件后,是否有任何方法可以格式化我的字体大小宽度,或者在我导出文件或使其适合时
我试过使用 \centering
,但没有用。
您可以在导入 table 之前设置字体大小,例如
\begin{table}[H]
\centering
\tiny % or whatever font size suites your needs
\input{df}
\end{table}
或者,您可以为您的号码提供合理数量的有效数字,这肯定会确保大量 space。
我正在将 pandss 数据框导出为我的背面项目的 tex 文件,如下所示:
df.to_latex('df.tex')
当我将文件导入我的项目时:
\begin{table}[H]
\centering
\input{df}
\end{table}
它不适合页面。
我想知道在使用 \input
.
我试过使用 \centering
,但没有用。
您可以在导入 table 之前设置字体大小,例如
\begin{table}[H]
\centering
\tiny % or whatever font size suites your needs
\input{df}
\end{table}
或者,您可以为您的号码提供合理数量的有效数字,这肯定会确保大量 space。