When citing a report type of the format
@report{example_report_2021, location = {Geneva}, title = {Example Report.}, url = {https://www.example.com}, shorttitle = {Example}, institution = {{CERN}}, author = {Einstein, A}, urldate = {2022-01-19}, date = {2021}, langid = {english}, }
and using hyperref, there is no link in the bibliography to the included url.
Specifically, I am using the following options:
\usepackage[backend=biber, style=phys, natbib, maxbibnames=4, articletitle=false, biblabel=brackets]{biblatex}
For anyone looking for a solution to this, add the following to your document:
\DeclareFieldFormat[report]{title}{\printtext[doi/url-link]{\mkbibemph{#1}}}
When citing a report type of the format
@report{example_report_2021, location = {Geneva}, title = {Example Report.}, url = {https://www.example.com}, shorttitle = {Example}, institution = {{CERN}}, author = {Einstein, A}, urldate = {2022-01-19}, date = {2021}, langid = {english}, }
and using hyperref, there is no link in the bibliography to the included url.Specifically, I am using the following options:
\usepackage[backend=biber, style=phys, natbib, maxbibnames=4, articletitle=false, biblabel=brackets]{biblatex}