Writing a text in a bibliography line.
I'm using biblatex, the name of the bibliography file is example.bib. The work that I want to edit is the following:
@article{Example-article,
title={Example},
author={Someone},
journal={arXiv-somenumber},
year={2017}
}
this prints "In: arXiv-somenumber" in the bibliography but I want to add a text before "arXiv-somenumber" showing that the work is "to appear".
I tried to use note{} but when I use this option, the "In: arXiv-somenumber" text disappears.
The exist some solution?
This is my code
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage[backend=bibtex,style=alphabetic,natbib=true]{biblatex}
\addbibresource{example.bib}
\usepackage{amsthm}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{mathtools}
\usepackage{theoremref}
\usepackage{booktabs}
\usepackage{thmtools}
\usepackage{amstext}
\begin{document}
\cite{Example-article}
\printbibliography[heading=bibintoc]
\end{document}
Moreover I want this that text for only that specific citation

biblatex? A MWE would be appreciated... – karlkoeller Feb 05 '17 at 05:56.bibentry that is the cause of your problem, but something else. The obvious culprit is the package responsible for typesetting the bibliography, but it is unclear how you are getting your.bibentries typeset. Until you provide more information (and please make it an MWE), no one can answer your question except by chance. – jon Feb 05 '17 at 06:22arXiv-somenumber? Because, if not, your entry shouldn't claim it is. Please edit your code to make it minimal. Only include the packages required to reproduce the issue. Also, avoid loading packages twice. It makes for trouble. – cfr Feb 07 '17 at 01:26\documentclassline; and (2) many of those packages have absolutely nothing to do with bibliographies or your specific problem. However, I think this answer is what you are looking for. (I also endorse all of cfr's recommendations.) – jon Feb 07 '17 at 02:54journal|journaltitlefield. (It is also probably not the best way to do it for most purposes, but I agree that the question requires some clarification.) – jon Feb 07 '17 at 03:10In:in the output (e.g.,@article,@incollection)? Is it just for journals? Or is it only for certain entries? – jon Feb 07 '17 at 03:14In :in the citation? If so, then look at my above link. If not, the criteria by whichbiblatexdecides to print that string needs to be explained further. – jon Feb 07 '17 at 15:32\usepackage[..., backend=biber, ...]{biblatex}. If that's possible for you, I can show one way to do it. – jon Feb 07 '17 at 18:25@articleis simply not the right entry type if you don't know the journal just yet: https://tex.stackexchange.com/q/415115/35864 – moewe Mar 06 '18 at 11:51