biblatex:每章和每节的参考书目

biblatex:每章和每节的参考书目

我正在使用biblatex它来撰写博士论文。

我想有每章的参考书目。此外,我想将参考书目拆分为每章。因此,我在加载时\section使用,并使用来打印参考资料。refsection=sectionbiblatex\bibbysection[heading=subbibliography]

问题是所有参考文献都有相同的标题(参考)。我想使用的数字\section(或者更好的是名字)。

我在手册中找到了实现该功能的方法(第 3.10.3 节),但无法使其工作。例如,对于以下文件:

\documentclass[12pt,a4paper]{scrbook}
\usepackage{csquotes}
\usepackage[backend=biber,backref=true,hyperref=true,%
        refsection=section,%
        firstinits=true,%
        style=alphabetic,%
        indexing=true,%sortcites=true
        url=false,doi=false]{biblatex}

\defbibheading{subbibliography}{%
\section*{References from section \ref{refsection:\therefsection}}}
% \usepackage{nameref}
% \defbibheading{subbibliography}{%
% \section*{\nameref{refsection:\therefsection}}}
\bibliography{test}
\begin{document}

\chapter{Yep}

\section{My first method}

See~\cite{Dubois2010}.

\section{My better method}

See~\cite{Dubois2011}.

\printbibheading
\bibbysection[heading=subbibliography]

\end{document}

还有围兜:

@INPROCEEDINGS{Dubois2011,
author = {Dubois, Mathieu},
title = {New stuff},
year  = {2011}
}
@INPROCEEDINGS{Dubois2010,
author = {Dubois, Mathieu},
title = {Old stuff},
year  = {2010}
}

我得到:

Bibliography
References from section 1
...
References from section 1.1

我期望的地方:

Bibliography
References from section 1.1
...
References from section 1.2

任何想法? ...

我在 Ubuntu 11.04(biblatex 版本 1.4c)上使用 TeXLive 2010。

相关内容