BibTeX, biblatex and biberCitations come out as single lower case letters

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
ky3399
Posts: 2
Joined: Tue Jan 28, 2014 10:25 am

Citations come out as single lower case letters

Post by ky3399 »

Hey guys,

I'm having a bit of an issue with preparing my paper for submission with the elsarticle document class. My citations are coming out as single lowercase letters. I'm trying to cite as author year. I have played around with different bibliography styles, but nothing is coming out. Changing the document class to article fixes the issue, so it seems something is not working correctly with the elsarticle document class.
I'm working with Texmaker and compiled the .bib file through Mendeley.

Here is a MWE.

Code: Select all

\documentclass[preprint,authoryear,12pt]{elsarticle}
\usepackage{amsmath,amssymb}
\usepackage{graphicx}
\usepackage[margin=0.85in]{geometry}
\usepackage{newclude}
\usepackage{verbatim}
\usepackage{booktabs}

\title{Test}


\begin{document}
\begin{frontmatter}
\end{frontmatter}
\citet{Philpott2001} text text test

\bibliographystyle{elsarticle-harv}
\section*{References}
\bibliography{blp}

\end{document} 

Code: Select all

@article{Philpott2001,
author = {Philpott, Andrew},
file = {:C$\backslash$:/Users/KY3399/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Philpott - 2001 - Supply chain optimisation in the paper industry.pdf:pdf},
journal = {Annals of operations research},
keywords = {mathematical model,operations research,optimisation,supply chain},
pages = {225--237},
title = {{Supply chain optimisation in the paper industry}},
url = {http://www.springerlink.com/index/JAWL58272MYTX03H.pdf},
year = {2001}
}
And this is what I get when I fully compile.

https://www.dropbox.com/sc/hbd9yjyjmes0dam/i8xDM-eCbr


Thanks for your help.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX books
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Citations come out as single lower case letters

Post by Johannes_B »

The reason for this behaviour comes from the newclude package, see below example (click on open in writelatex)

Code: Select all

\begin{filecontents}{\jobname.bib}
    @article{Philpott2001,
    author = {Philpott, Andrew},
    file = {:C$\backslash$:/Users/KY3399/AppData/Local/Mendeley Ltd./Mendeley Desktop/Downloaded/Philpott - 2001 - Supply chain optimisation in the paper industry.pdf:pdf},
    journal = {Annals of operations research},
    keywords = {mathematical model,operations research,optimisation,supply chain},
    pages = {225--237},
    title = {{Supply chain optimisation in the paper industry}},
    url = {http://www.springerlink.com/index/JAWL58272MYTX03H.pdf},
    year = {2001}
    }
    \end{filecontents}
\documentclass[preprint,authoryear,12pt]{elsarticle}

%\usepackage{newclude}

\title{Test}
\begin{document}
\begin{frontmatter}
\end{frontmatter}
\citet{Philpott2001} text text test

\bibliographystyle{elsarticle-harv}
\section*{References}
\bibliography{\jobname}

\end{document}
Do you really need this package?
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
ky3399
Posts: 2
Joined: Tue Jan 28, 2014 10:25 am

Re: Citations come out as single lower case letters

Post by ky3399 »

Now that I'm about to submit, I guess the newclude package isn't necessary anymore.

Thanks so much for your help!
Post Reply