This is what I'm trying to do:
\documentclass[11pt,oneside]{article}
\usepackage{biblatex}
\addbibresource{../main.bib}
\usepackage{hyperref}
\begin{document}
\citeauthor{jeff2018} said in his awesome article
\href{\citeurl{jeff2018}}{\citetitle{jeff2018}} that life is great!
\end{document}
This is what I have in main.bib:
@misc{jeff2018,
title={Life Is Great},
author={Lebowski, Jeff},
year={2018},
url={http://www.yegor256.com}
}
Can't compile. What is the right way?
jeff2018. – Mico Jun 28 '18 at 08:48\href{\protect\citeurl{jeff2018}}{\citetitle{jeff2018}}. Unfortunately, even though this modification lets LaTeX finish without crashing, it doesn't create the expected output, i.e., the title string )"Life is Great") isn't properly clickable. Hopefully, the maintainers of thehyperrefandbiblatexpackages will provide more helpful answers. – Mico Jun 28 '18 at 09:37\hrefexpects something that more or less expands to a raw URL, but\citeurlalready applies lots of formatting to the URL and so can't really be used here. – moewe Jun 28 '18 at 10:01