单独的参考文献和参考书目

单独的参考文献和参考书目

我正在尝试使用 biblatex 分离参考文献和参考书目,并且尝试通过使用两个单独的 bib 文件来实现这一点,但我不太确定应该如何处理它。

\documentclass{article}
\usepackage{biblatex}
\addbibresource{main.bib}
\addbibresource{bibliography.bib}
\begin{document}
\maketitle

the main text

\printbibliograph
\end{document}

答案1

也许自己的refsection参考书目可以有所帮助?

\documentclass{article}
\usepackage{biblatex}


\usepackage{filecontents}
\begin{filecontents*}{main.bib}
@article{aksin,
  author       = {Aks{\i}n, {\"O}zge and T{\"u}rkmen, Hayati and Artok, Levent
                  and {\c{C}}etinkaya, Bekir and Ni, Chaoying and
                  B{\"u}y{\"u}kg{\"u}ng{\"o}r, Orhan and {\"O}zkal, Erhan},
  title        = {Effect of immobilization on catalytic characteristics of
                  saturated {Pd-N}-heterocyclic carbenes in {Mizoroki-Heck}
                  reactions},
  journaltitle = jomch,
  date         = 2006,
  volume       = 691,
  number       = 13,
  pages        = {3027-3036},
  indextitle   = {Effect of immobilization on catalytic characteristics},
}
\end{filecontents*}

\usepackage{filecontents}
\begin{filecontents*}{bibliography.bib}
@article{angenendt,
  author       = {Angenendt, Arnold},
  title        = {In Honore Salvatoris~-- Vom Sinn und Unsinn der
                  Patrozinienkunde},
  journaltitle = {Revue d'Histoire Eccl{\'e}siastique},
  date         = 2002,
  volume       = 97,
  pages        = {431--456, 791--823},
  langid       = {german},
  indextitle   = {In Honore Salvatoris},
  shorttitle   = {In Honore Salvatoris},
  annotation   = {A German article in a French journal. Apart from that, a
                  typical \texttt{article} entry. Note the \texttt{indextitle}
                  field},
}
\end{filecontents*}
\addbibresource[label=main]{main.bib}
\addbibresource[label=bibliography]{bibliography.bib}

\begin{document}

the main text \cite{aksin}
\printbibliography

\begin{refsection}[bibliography]
\nocite{*}\printbibliography[title=Bibliography]
\end{refsection}

\end{document}

相关内容