- 这是一种替代且快速的方法(针对迄今为止的评论)。
- 你的表格很长,而且你似乎是 LaTeX 的新手。
- 我会将 Excel 表格转换为 PDF(图片),然后将其包含在
pdfpages
或中includegraphics
。
\documentclass[12pt]{article}
% https://www.ctan.org/pkg/pdfpages
\usepackage{pdfpages}
% \captionof
\usepackage{caption}
% https://www.overleaf.com/learn/latex/Headers_and_footers
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\rhead{Test Header Right}
\lhead{Test Header Left}
\rfoot{Page \thepage}
\begin{document}
\tableofcontents
\listoftables
\section{Test Section}
Test text. Test text. Test text. Test text. Test text.
\subsection{Test SubSection}
Test text. Test text. Test text. Test text. Test text.
\includepdf[
pages = 1,
pagecommand = {
\pagestyle{fancy}
\captionof{table}{Experiment results.}
},
%fitpaper = true, % see manual for more information
%noautoscale = true, % see manual for more information
]{Table_PDF.pdf}
\end{document}
(Excel表格的PDF版本截图)