从使用 latex 创建的 PDF 文档中恢复表格

从使用 latex 创建的 PDF 文档中恢复表格

我最近使用 latex 和 odsfile 包将 libreoffice 电子表格转换为 pdf,如下所示(使用 lualatex)。表格包含以逗号作为小数分隔符的数字。

\documentclass[landscape]{article}

\usepackage{tabularray}
\UseTblrLibrary{booktabs}  

\usepackage{odsfile}

\tabletemplate{booktabs}{%
\begin{tblr}{-{coltypes}}
\toprule -{colheading} \midrule -{content}\bottomrule
\end{tblr}
}


\begin{document}

\section*{Section 1}

\SetTblrInner{row{1}={font=\bfseries}}

\includespread[file=myfile.ods,range=a4:p20,template=booktabs,columns=head]

\end{document}

问题是我不小心删除了myfile.ods。然后我尝试将表格从 evince 复制并粘贴到 libreoffice calc,但没有成功。

那么有没有什么巧妙的方法可以找回表格,也许可以利用它的创建方式(参见上面的源代码)?

相关内容