在乳胶中包含 word/pdf 文件吗?

在乳胶中包含 word/pdf 文件吗?

我想知道是否可以以这样的方式将 Word(或 PDF)文件集成到 LaTeX 中,以便仍然可以使用该 Word/PDF 中提供的超链接。

答案1

2020 年 4 月 17 日更新

在我写完答案之后,海科·奥伯迪克已经发布了更先进的套件,嵌入文件,提供同样附加文件甚至更多


您正在寻找斯科特·帕金的包裹附加文件. 根据描述加拿大运输安全局

从 PDF 1.3(Adobe Acrobat 4.0)开始,PDF 文件可以包含文件附件 — 读者可以提取的任意文件,就像电子邮件附件一样。attachfile 包将此功能引入 pdfLaTeX,并提供一些 Acrobat 中没有的附加功能,例如能够使用任意 LaTeX 代码作为文件图标 — 包括 \includegraphics、表格和数学等。可以全局设置,也可以针对每个附件进行设置。Attachfile 可以轻松附加文件并自定义其在封闭文档中的外观。

以下代码给出了所附的结果。双击标签会在您的 tex 编辑器中打开该文件(您必须编译我的代码,图片中的链接不起作用)。

在此处输入图片描述

\documentclass{article}
\usepackage{array, threeparttable}
\usepackage{attachfile}


\setlength{\extrarowheight}{2pt}
\renewcommand*{\arraystretch}{1.1}

\begin {document}
\begin{table}
    \centering
    \begin{threeparttable}
    \caption{A caption with lot of interesting information of how to interpret the complicated figures and mathematics in the tabular}
        \begin{tabular*}{0.8\linewidth}{@{\extracolsep{\fill}}@{}c| *{8}{c}@{}}
            Test & $1$ & $2$ & $3$ & $4$ & $5$ & $6$ & \begin{tabular}{@{}c@{}}
$7$ \\ $8$ \\ $9$\end{tabular} & $8$ \\
            \hline
           \hline
           1 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \\
           \hline
           1 & 0 & 0 & 0 & 0 & 0 & 0& 0 & 1 \\
           \hline
           1 & 0 & 0 & 0 & 0 & 0 & 0 & 1 & 1 \\
           \hline
        \end{tabular*}
    \end{threeparttable}
\end{table}

\attachfile[icon=Tag]{test-table-centering.tex}

\end{document}

相关内容