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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
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: 10359
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 2140 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