包括来自 Google Drive 的文件

包括来自 Google Drive 的文件

有人知道我该如何从 Google Drive 导入文件吗?比如

\input{http://adress_to_myfile_at_GDrive.tex}

答案1

这是可以工作的最小示例,不需要额外的包。

我创建了webfile.tex以下内容:

THIS IS THE WEB FILE.

我把它放在我的网页

在主文档中(在我的情况下是)~/StackOverflow/ex2.tex,使用\write18运行 shell 命令并\immediate立即执行。\unexpanded如果您的链接包含等~,我建议使用#。文档在此处:

\documentclass[12pt]{report}

\begin{document}

Here is the main document.

And here will be the imported \texttt{webfile.tex} file, which I uploaded on my web page.

\immediate\write18{\unexpanded{wget -P ~/StackOverflow http://sirrah.troja.mff.cuni.cz/~pavlik/webfile.tex}}
\input{webfile}

\end{document}

然后用pdflatex -shell-escape ex2.tex

结果是

在此处输入图片描述

但这仍会将.tex文件下载到您的计算机(下载目录由开关指定-P /some/dir/here),恕我直言,如果不下载文件就无法做到这一点。

相关内容