I have the following MWE:
\documentclass{article}
\usepackage{fullpage}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=apa, natbib=true, backend=biber]{biblatex}
\DeclareLanguageMappingSuffix{-apa}
\addbibresource{bib.bib}
\usepackage{hyperref}
\hypersetup{allcolors=blue,colorlinks=true,linktocpage,bookmarksopen,bookmarksnumbered}
\begin{document}
\sloppy
\citep{A1}
\citet{A2}
\printbibliography
\fussy
\end{document}
and these are the contents of the .bib file:
@article{A1,
author = "Wayne, J.",
title = "{Without volume...}",
journal = "Journal A",
volume = "",
number = "Y",
pages = "1-2",
year = "0000",
doi = "10.1007/...",
url = ""
}
@article{A2,
author = "Lee, B.",
title = "{With volume...",
journal = "Journal B",
volume = "X",
number = "Y",
pages = "3-4",
year = "0000",
doi = "",
url = "https://..."
}
As you see, I do not get hyperlinks over the complete citation field (author + year + brackets). What would be the most efficient solution to address this issue?
biblatex-apaI suggest https://tex.stackexchange.com/q/602824/35864. – moewe Nov 11 '21 at 05:32authoryearor other styles. Since APA is quite standardly used, I also wonder when the biblatex developers will offer a more synthetic solution to the problem for end-users.............. – Euclides Nov 11 '21 at 05:53biblatex's standardauthoryearalso only links the year. The problem is that a uniform solution that works well for all styles and all edge cases is surprisingly tricky. – moewe Nov 11 '21 at 05:55Smith (2010, 2012)and how do you want the link there? What should point to the 2010 book and what to 2012? – Ulrike Fischer Nov 11 '21 at 07:44Smith (2010, 2012)appears completely hyperlinked, with each year pointing to the appropriate reference. Same goes forSmith et al. (2010, 2012a, 2012b). Don't ask me about the detailed hyperlink structure for such a situation. No clue.............. – Euclides Nov 11 '21 at 09:09tex.stackexchange.com/q/602824/35864but the hyperlinks do not include the brackets. Is there any other solution including these? – Euclides Nov 13 '21 at 07:01