如何将 PDF 包含在文档中并将其条目添加到表格列表中?我有三个文档(pdf)包含表格,我想将它们放在 latex 上(将它们作为唯一表格包括在内,并在末尾添加标题“摘要表”,只有一个标题,请问如何执行此操作以及如何在我的表格列表中添加表格标题(以及页面)
\includegraphics{tableofcontentmanually/file1.pdf}
\includegraphics{tableofcontentmanually/file2.pdf}
\includegraphics{tableofcontentmanually/file3.pdf}
这是我在 pdf 上的表格 :) 感谢您的时间和考虑
答案1
答案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}