Is it possible to reference to a citation inside a refsection from the outside? And I mean outside not as in "inside another refsection", but as in "inside no refsection".
In the following MWE, the label of ArticleA is properly printed, but the link does not lead to the list of references in SectionB.
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{MWE.bib}
@article{articleA,
author = {Clark Kent},
title = {On why superman is stronger than batman},
journal = {The daily planet},
year = {2016},
}
@article{articleB,
author = {Bruce Wayne},
title = {On why batman is stronger than superman},
journal = {Wayne Enterprises journal},
year = {2016},
keywords = {blablabla},
}
\end{filecontents}
\usepackage[backend=biber,style=alphabetic]{biblatex}
\addbibresource{MWE.bib}
\usepackage[colorlinks]{hyperref}
\hypersetup{urlcolor=blue, citecolor=blue, linkcolor=blue}
\begin{document}
\section{Section Title A}
This is outside any refsection.
Here's a normal reference: \cite{articleB}.
Here's a reference that's only listed inside a refsection: \cite{articleA}
\printbibliography[keyword=blablabla]
\newpage
\begin{refsection}
\section{Section Title B}
\cite{articleA}, \cite{articleB}
\printbibliography
\end{refsection}
\end{document}
refsections, could you maybe userefsegments which are not as reclusive? – moewe Apr 10 '16 at 10:56