包含一个 PDF(包含一个表格)并将其条目放入表格列表中

包含一个 PDF(包含一个表格)并将其条目放入表格列表中

如何将 PDF 包含在文档中并将其条目添加到表格列表中?我有三个文档(pdf)包含表格,我想将它们放在 latex 上(将它们作为唯一表格包括在内,并在末尾添加标题“摘要表”,只有一个标题,请问如何执行此操作以及如何在我的表格列表中添加表格标题(以及页面)

\includegraphics{tableofcontentmanually/file1.pdf}
\includegraphics{tableofcontentmanually/file2.pdf}
\includegraphics{tableofcontentmanually/file3.pdf}

这是我在 pdf 上的表格 :) 感谢您的时间和考虑表

答案1

假设 pdf 中的表格已被裁剪为正确的大小:

\documentclass{article}
\usepackage{graphicx}

\begin{document}

\listoftables

\begin{table}
\includegraphics[scale=1]{example-image}
\caption{test}
\end{table}

\end{document}

在此处输入图片描述

答案2

使用pdfpages和它的addtolist选项,比如addtolist={1,table,My wonderful table,table::wonderfultable}为了将.pdf文件的第一页添加到list of tables,给它标题My wonderful table和与之一起label table::wonderfultable工作。\ref

这适用于任何浮点数,例如figure等。

\documentclass{article}
\usepackage{pdfpages}
\begin{document}

\listoftables


See \ref{table::wonderfultable}



\includepdf[scale=0.5,addtolist={1,table,My wonderful table,table::wonderfultable}]{7}

\end{document}

在此处输入图片描述

7.pdf文件生成自

\documentclass{article}

\usepackage{blindtext}

\begin{document}
\section{Beginning \jobname}
\blindtext[50]
\end{document}

相关内容