有效地将长表从 Excel 转换为 LATEX?

有效地将长表从 Excel 转换为 LATEX?
  • 我在 MS Excel 中有一个长表。
  • 如何将(长)表格从 Excel 转换为 LaTeX?
  • 是的,我在这个网站上读到了一些实现此目的的方法。但我的表格很长。
  • 我无法使用这些方法有效地转换我的表格。
  • 你可以帮帮我吗?

(用户 Manuel Kuehner 博士的截图 - 我还删除了下载链接,因为它具有潜在危险并且不长期稳定。) 在此处输入图片描述

答案1

  • 这是一种替代且快速的方法(针对迄今为止的评论)。
  • 你的表格很长,而且你似乎是 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版本截图) 在此处输入图片描述

相关内容