I'd like to reference sources “in the flow in the text”, for example:
As described in the User Manual, ...
Now, if I use the default BibLaTeX style (whichever it is), I get
As described in the [User Manual], ...
or, using \citetitle
As described in the User Manual, ...
How can I cite without either brackets or italics but with a prenote and the hyperlink?
Or maybe it's possible with shorttitle?
I would prefer a solution “out of the box”: using BibLaTeX's options or just switching the style, rather than writing some custom code for citations.
\documentclass[]{article}
\usepackage[
backend = biber
]{biblatex}
\usepackage{hyperref}
\begin{filecontents}[overwrite]{biblio.bib}
@Online{key,
author = {author},
title = {title},
shorthand = {User Manual},
shorttitle = {User Manual}
}
\end{filecontents}
\addbibresource{biblio.bib}
\begin{document}
\cite[in the first half of the][]{key} % brackets
\textcite[in the first half of the][]{key} % not needed author
\citetitle[in the first half of the][]{key} % % no hyperlink, italic
\printbibliography
\end{document}

![in the first half of the User Manual
author [in the first half of the User Manual]
in the first half of the User Manual](../../images/1e4614899431e79cd182deafa646e101.webp)