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