Biblatex 主文件中的书目数据

Biblatex 主文件中的书目数据

我一直在使用 Bibtex。当我将源文件发送到期刊时,我总是将 bbl 文件放入其中。我正在研究 Biblatex,但看起来它不起作用。有没有办法使用 Biblatex 将书目数据放入主 LaTeX 文件中,还是必须发送单独的文件?如果我使用 Biber,答案会改变吗?

答案1

这可能不是您想要的答案,但您可以执行以下操作:

\documentclass{article}
\usepackage{biblatex}
\usepackage{filecontents}

\begin{filecontents}{aFileName.bib}
   <contents of bibliography file>
\end{filecontents}

\addbibresource{aFileName.bib}

\begin{document}
   <contents of document>
\end{document}

该文件aFileName.bib将在编译期间创建并保留在工作文件夹中。

但可能还有其他方法可以解决这个问题。

相关内容