In my PhD thesis, if the chapter is already published I need to state that "This chapter has been published as:......".
It's quite convenient to do it with \fullcite{} command. But then the problem is this \fullcite{} also end up in the per-chapter bibliography, which doesn't make sense for the reader.
Is there a way to specify that one citation should not be in the bibliography? (Like the opposite of \nocite)
MWE (my real .bib file is my whole library):
\documentclass{book}
\usepackage[style=authoryear-comp]{biblatex}
\addbibresource{\jobname.bib}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{key1,
author = {Myself, Me.},
year = {2001},
title = {Title1},
publisher = {Publisher1},
}
@book{key2,
author = {Author, B.},
year = {2002},
title = {Title2},
publisher = {Publisher2},
}
\end{filecontents}
\begin{document}
\chapter{A}
This chapter has been published as :\\
%(This \fullcite should not be in the reference list)
\fullcite{key1}
\section{section1}
In text cite: \cite{key2}
\printbibliography[segment=\therefsegment,heading=subbibliography]
\end{document}
notkeyword=<insert keyword>for\printbibliography. – kmbkrkn Nov 30 '17 at 15:34fullciteonce, and for this citation it should not go to the bibliography, as requested by the OP. But later, the same entry is cited astextciteorparenciteor whatever, and for this citation it should go to the bibliography. – gusbrs Nov 30 '17 at 16:23refsectionand handles your issues (I think). – StrongBad Nov 30 '17 at 17:58