如何在 LaTeX3 中将参考书目打包到自己的包中

如何在 LaTeX3 中将参考书目打包到自己的包中

我想将我的参考资料放入一个包中,以便在各个文档中使用。现在我有一个.bib包含列表的文件,并将其.cls作为导入到文件中\bibliography{./my/local/bibliography}

我只想这样做:

\usepackage{mybibliography}
...
\bibliography{mybibliography}

或者简单地说:

\bibliography{mybibliography}

(无需\usepackage)。不确定这是否可能或必要。

如何实现这一点。不确定需要发布或编译成包的内容,因为它.bib本质上只是一个文件。到目前为止,我所拥有的只有:

%
% Set latex version.
%

\NeedsTeXFormat{LaTeX2e}[2018/03/16 MyBibliography]

%
% Import packages.
%
% I would like to do this in a separate document class rather than here.
%

\RequirePackage[numbers]{natbib}

%
% Style bibliography.
%
% I would like to do this in a separate document class rather than here.
%

\bibliographystyle{amsplain}

%
% ...where to include the .bib file / what to do with that.
%

相关内容