I have a document with bibliographical references at the end handled by biblatex and biber.
I need to reproduce in the core of a text a bibliographical reference exactly in the same way as it appears in the bibliographical references.
I thought of a way to handling this issue by calling successively
\noindent \autocite{a} \Citeauthor{a}. \citetitle{a}.
However, I don't have a commande for \cite-journalname and another for \cite-doi or even \cite-volume or \cite-pages, ... So my solution does not work.
Any hint?
Here is a MWE
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@Article{a,
date = {2003},
author = {Author, Amy},
title = {Paper title},
journaltitle = {Journal title},
volume = 10,
number = 4,
pages = {100-141},
doi={10.1109/TAC.2016.2614910}
}
\end{filecontents*}
\usepackage[backend=biber]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
\nocite{*}
\section{My text}
I need to print here a complete biblio reference exactly as it appears in the References section. A trial was to cite the reference in the following way:
\noindent \autocite{a} \Citeauthor{a}. \citetitle{a}.
\section{References}
\subsection{Journals}
\newrefcontext[labelprefix=\Alph{subsection}-]
\printbibliography[]
\end{document}
\fullcite{sigfridsson}? That omits the label. If you need it, a more sophisticated solution is needed. – moewe Jan 25 '18 at 16:07