BibTeX, biblatex and biberAuthor replaced by Dash

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Jahan
Posts: 2
Joined: Tue Jul 17, 2012 8:58 am

Author replaced by Dash

Post by Jahan »

I have a really puzzling problem. I have the following entry:

Code: Select all

@article{crabtreeReview,
title = "Organometallic alkane CH activation",
author={R. Crabtree},
journal = "Journal of Organometallic Chemistry",
volume = "689",
number = "24",
pages = "4083 - 4091",
year = "2004",
}
Which ends up not showing the author's name. It shows a dash instead. When I change the spelling of the author's name (to Crabtreee for example) it accepts it and it shows up fine.

This is quite puzzling and frustrating.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Author replaced by Dash

Post by localghost »

Please prepare a self-contained and minimal example to avoid random shots and guesswork.


Thorsten
User avatar
Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Author replaced by Dash

Post by Stefan Kottwitz »

Hello Jahan,

since you are new to the forum, you perhaps don't know yet why a Infominimal working example (MWE) is important and how to make one. Please follow the link and Thorsten's link to learn why and how.

Here I made an MWE which uses your code snippet but doesn't show the behavior:

Code: Select all

\RequirePackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{crabtreeReview,
    title = "Organometallic alkane CH activation",
    author={R. Crabtree},
    journal = "Journal of Organometallic Chemistry",
    volume = "689",
    number = "24",
    pages = "4083 - 4091",
    year = "2004",
    }
\end{filecontents}
\documentclass{article}
\begin{document}
\section{Main text}
See \cite{crabtreeReview}.
\bibliography{\jobname}
\bibliographystyle{plain}
\end{document}
I took the time for this, to show how filecontents can be used for creating a MWE with a bibliography. Of course one can post a normal document and the bibliography as a separate file.
bibliography.png
bibliography.png (15.96 KiB) Viewed 2082 times
As you can see, the problem doesn't appear. That's why further information is required to fix it, since we don't know what's in your code, besides the bib snippet.

Stefan
LaTeX.org admin
Post Reply