有没有办法将 pdf 报告作为附录添加到 latex 中?

有没有办法将 pdf 报告作为附录添加到 latex 中?

我有通过在线软件工具生成的 html 报告,而我打算将这些报告作为附录插入到我的 latex 项目中。我使用在线工具将 html 报告转换为pdf第一种。但是,我知道如何在 latex 中添加附录,但我不知道如何将独立的 pdf 文档添加为 latex 附录。我该怎么做?有没有捷径可以做到这一点?如何使用 latex 代码继续我的 latex 序言,以便我可以插入几页 pdf 文档作为附录?有什么想法吗?提前谢谢 :)

这是网址html

html 报告

答案1

我使用了 OP 提供的链接,并htmlreport.pdf从文档中生成了一个文件.html(仅打印到文件),此外,我还保存了该文件(这提供了两个文件,.html.css文件)

文件.pdf可以分段或完整地输入\includepdf.html并且.css可以使用 附加和文件\attachfile(请同时attachfile2阅读 的文档)。attachfile

\documentclass{book}


\usepackage{pdfpages}
\usepackage{attachfile2}

\begin{document}
\chapter{Theory of Brontosaurs}

\chapter{How to become a brain surgeon}

\appendix

\includepdf[pages={3-5}]{htmlreport.pdf}

Source of report: \attachfile[color=blue,mimetype=text/html,icon={Paperclip},description={Source of report}]{reportsource.html}
Additional CSS file: \attachfile[color=blue,mimetype=text/css,icon={Paperclip},description={CSS of report}]{report.css}



\end{document}

在此处输入图片描述

embedfile请也查看一下包装!

相关内容