For my PhD thesis I am obliged to cite all my contributions, not only papers but also posters and talks given at conferences. Now I am struggling how to do this best. My best try so far looks like this:
\documentclass[11pt]{article}
\usepackage{filecontents}
\usepackage[
style=numeric-comp,
bibstyle=numeric,
backend=biber
]{biblatex}
\bibliography{mybib}
\begin{filecontents}{mybib.bib}
@inproceedings{Me2014,
author = {Me, P.},
title = {{Some Title}},
addendum = {Poster presented at some conference, Bremen, Germany}
}
\end{filecontents}
\begin{document}
Test citation~\cite{Me2014}.
\printbibliography
\end{document}
However, this produces the following:

This looks weird since I did not provide any booktitle which results in an empty In. Is there a way to get rid of that?

@miscseems like the right entry-type, but, at least in the numeric-comp style, it creates an entry with an italicised title, which is inappropriate when referring to a talk or conference poster. – ig0774 Jul 23 '15 at 14:29