我正在写一篇论文,我希望其结构如下:
介绍
第一章
A 章参考书目
B章
B 章参考书目
讨论
引言和讨论参考书目
有没有办法实现这一目标章节目录(或者其他软件包)?我不知道如何将引言和讨论部分的参考书目合并到一个参考书目列表中。
答案1
您可以通过组合特征来达到所需的结果biblatex
。此解决方案要求您向简介和讨论部分中引用的参考书目项目添加一些关键字。
@misc{baz,
keywords = {introdisco}, % keyword for sorting only
title={Baz},
author={B, B},
}
@misc{quux,
keywords = {introdisco}, % keyword for sorting only
title={Quux},
author={Q, Q},
}
@misc{foo,
title={Foo},
author={F, F},
}
@misc{bar,
title={Bar},
author={B, B},
}
下面是按照您描述的布局的示例(您必须调整包设置以满足您的要求):
\documentclass{article}
\usepackage[sorting=none, backend=biber, style=alphabetic, natbib]{biblatex} % load the package
\addbibresource{references.bib} % add a bib-reference file
\begin{document}
% Document
\section{Intro}
Here \cite{baz}. No bibliography in this section.
\section{First}
\begin{refsection} % refsection environment
Citation section \thesection: \cite{foo} % collect citations
\printbibliography[heading=subbibliography,title=Local Bibliography]
\end{refsection}
\section{Second}
\begin{refsection} % refsection environment
Citation section \thesection: \cite{bar}
\printbibliography[heading=subbibliography,title=Local Bibliography] % print section bibliography
\end{refsection}
\section{Discussion}
Here \cite{quux}
\printbibliography[keyword=introdisco,title=Combined Bibliography]
\end{document}