I've been searching for a way to create "Custom References" with biblatex, but haven't found a solution to my problem. Among "normal sources" like Journal Articles, I need other references where I can put a custom sentence in it. Like "[3] This was performed by someone else".
Is there an option to do that?
\documentclass{scrreprt}
\usepackage[refsection=chapter,style=chem-angew]{biblatex}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage[ansinew]{inputenc}
\begin{filecontents}{biblio.bib}
@article{entry1,
author = "George D. Greenwade",
title = "The {C}omprehensive {T}ex {A}rchive {N}etwork ({CTAN})",
year = "1993",
journal = "TUGBoat",
volume = "14",
number = "3",
pages = "342--351",
url=" www.ctan.org"
}
\end{filecontents}
\addbibresource{biblio.bib}
\begin{document}
\chapter{Test Chapter One}
\cite{entry1}
So far so good, now I need another reference that says 'This was performed by someone else'.
\printbibliography[heading=subbibliography]
\end{document}

\citestuff, but leave the appearance of the bibliography as is, try\cite[<pre text>][<post text>]{<bibID>}. – greyshade Sep 02 '14 at 09:20\cite{dude} This was performed by someone elsegive "[3] This was performed by someone else"? – Torbjørn T. Sep 02 '14 at 09:36Now in the bibliography: [1] Will, Journal, Year, Pages. [2] Here I need my custom text. And only this text.
– screeny2 Sep 02 '14 at 10:24