对于非全局条目,每个部分后面都有多个全局书目和本地书目

对于非全局条目,每个部分后面都有多个全局书目和本地书目

我正在尝试实现以下目标:一份跨越多个部分的大型文档

  • 每节后附有参考书目

  • 最后是几位学术人士的简介,每人都列出了自己的出版物

但有以下(烦人的)规则:

  • 如果作者被列入最后的学术简介中,那么对其作品的任何引用都必须参考其学术简介中相应的出版物清单。

每个部分后面的参考书目都可以轻松地使用 refsections 来完成。但是,如何才能让某些出版物的引用在最后引用各自的出版物列表呢?

我知道有一种可能性是使用关键字手动跟踪引用应该出现的位置。但是有没有更简单的解决方案?

以下是 MWE:

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{MWE.bib}
@misc{notMyWorkA,
    author = {Not Me},
    title  = {Something relevant A},
    year   = {2015},
}
@misc{notMyWorkB,
    author = {Not Me},
    title  = {Something relevant B},
    year   = {2016},
}
@misc{myWork,
    keywords = {byMyself},
    author = {My Self},
    title  = {Something relevant},
    year   = {2016},
}
\end{filecontents}
\usepackage[backend=biber,style=alphabetic]{biblatex}
\addbibresource{MWE.bib}
\usepackage[colorlinks]{hyperref}
\hypersetup{urlcolor=blue, citecolor=blue, linkcolor=blue}

\begin{document}
\begin{refsection}
\section{Example section}
Here is an example section including multiple citations like 
\cite{notMyWorkA}, \cite{notMyWorkB} and \cite{myWork}.

At the end of the section, there is a list of references. 
However, this list should not contain my own publications, 
which are supposed to be separately listed.

\subsection*{References}
\printbibliography[notkeyword=byMyself, heading=none]
\end{refsection}

\newpage
\begin{refsection}
\section{Academic profile of myself}

Here is an academic profile of myself including a description of my work, 
also with various citations such as \cite{notMyWorkA} and \cite{myWork}.

At the end, there is a list of references that appeared in this section. 
This list is supposed to distinguishes between publications of other people 
and that of my own. Any citation to my publications should refer to here.

\subsection*{References}
\printbibliography[notkeyword=byMyself, heading=none]

\subsection*{My publications}
\printbibliography[keyword=byMyself, heading=none]
\end{refsection}

\end{document}

相关内容