使用 refsection 时参考书目显示不正确

使用 refsection 时参考书目显示不正确

看完之后:章节参考书目小心谨慎,但我仍然陷入困境并感到沮丧。我的代码如下:

\documentclass[]{friggeri-cv}
\usepackage[backend=bibtex]{biblatex}
\addbibresource{mybib.bib}
\begin{document}
.
.
.
\section{publications}
\begin{refsection}
\cite{kb}, \cite{co}, \cite{bn}
\printbibliography[heading=subbibliography]
\end{refsection}

我编译了 xelatex>bibtex>xelatex>xelatex,但参考书目未能出现 这是 3 个参考书目之一

@article{bn,
  author    = {Evripidis Bampis and
               Giorgio Lucarelli and
           Ioannis Nemparis},
   title     = {Improved Approximation Algorithms for the Non-preemptive
           Speed-scaling Problem},
   journal   = {CoRR},
   volume    = {abs/1209.6481},
   year      = {2012},
   ee        = {http://arxiv.org/abs/1209.6481},
   bibsource = {DBLP, http://dblp.uni-trier.de}
}

以下是我得到的结果: 结果]![在此处输入图像描述

friggeri.cls 不包含任何参考书目内容,因为我删除了该部分。我在上面发布的代码来自我的 cv_10.tex 文件和 mybib.bib 文件。请坚持使用 refsection。

答案1

我将 bib 文件命名为 mybib.bib,将 tex 文件命名为 prawf.tex:

\documentclass[]{article}
\usepackage[backend=bibtex]{biblatex}
\addbibresource{mybib.bib}
\begin{document}
\section{publications}
\begin{refsection}
\cite{bn}
\printbibliography[heading=subbibliography]
\end{refsection}
\end{document}

生成:

在此处输入图片描述

我跑了

xelatex prawf.tex
bibtex prawf1-blx
xelatex prawf.tex
xelatex prawf.tex

请注意,由于您使用的是带有 refsections 的 bibtex,因此必须在生成的每个部分 bbl 文件上运行 bibtex。因此在 prawf1-blx 上运行,而不是在 prawf 上运行。

相关内容