我有以下两个文件,第一个使用 bibtex:
\documentclass{article}
\begin{filecontents}[overwrite]{\jobname.bib}
@article{art,
author = {Article Author},
title = {Article Title},
journal = {Journal},
volume = {2},
year = {Year},
},
@book{book,
author = {Book Author},
title = {Book Title},
volume = {2},
publisher = {Publisher},
year = {Year},
}
\end{filecontents}
\begin{document}
\nocite{*}
\bibliographystyle{plain}
\bibliography{\jobname}
\end{document}
第二次使用 biblatex:
\documentclass{article}
\usepackage{biblatex}
\begin{filecontents}[overwrite]{\jobname.bib}
@article{art,
author = {Article Author},
title = {Article Title},
journal = {Journal},
volume = {2},
year = {Year},
},
@book{book,
author = {Book Author},
title = {Book Title},
volume = {2},
publisher = {Publisher},
year = {Year},
}
\end{filecontents}
\bibliography{\jobname}
\begin{document}
\nocite{*}
\printbibliography
\end{document}
使用第一个文件(bibtex),输出以下内容:
而第二个(biblatex)输出:
我怎样才能使第一个看起来像第二个?我知道有自定义 .bst 文件,我需要使用其中一个吗?或者已经有一个为此目的制作的文件了?