有人知道是否可以加载位于 Google Drive 中的书目文件吗?例如,我想使用
\bibliography{https://drive.google.com/file/d/0Bx_9L7GzTcK2ZE1EalZ1vFlzSjg/edit?usp=sharing}
可以这样做吗?我知道这适用于 Dropbox。
答案1
可以使用biblatex
,但必须使用biber
作为后端。您需要使用
\addbibresource[location=remote]{*url*}
google drive 中的 .bib 文件必须是公开的,或者可以通过链接访问,并且需要更改网址从https://drive.google.com/file/d/XXXXXXXX/edit?usp=sharing
到https://docs.google.com/uc?id=XXXXXXXX&export=download
。
例子:
\documentclass{article}
\usepackage[style=authoryear,backend=biber]{biblatex}
\addbibresource[location=remote]{https://docs.google.com/uc?id=0BxJDztsS-HbsZ1hTOXQ0S0w0d1U&export=download}
\begin{document}
\cite{Box1972}
\printbibliography
\end{document}