I would like to print a citation entry in my text body, but NOT have it as a numbered bibliography entry. I tried the bibentry package, but didn't have luck
EDIT I would prefer the solution to not require manipulating the bib entries themselves.
MWE
\documentclass{article}
\begin{filecontents}{ref.bib}
@Book{IncludeInRefs,
author = {J. Doe},
title = {Book of something}
}
@Standard{DontInclude,
author = {IEEE},
title = {An electrical standard}
}
\end{filecontents}
\usepackage{bibentry}
\usepackage[backend=biber]{biblatex}
\addbibresource{ref.bib}
\begin{document}
We are conformting to the following standards:
\fullcite{DontInclude}
Here's a good book: \citetitle{IncludeInRefs}~\cite{IncludeInRefs}
\printbibliography
\end{document}


.bibchanges. – PLK Aug 30 '22 at 08:54