I am having a problem with my references, the error message is
Bibliography not compatible with author-year citations.
I have stripped down all tex and references files however I still have the same problem.
I have tried the following:
- Delete all the temp file. I am using WinEdt8
- I have year in my reference
- Using
\citetinstead of\cite - Try
\usepackage[square,sort,comma,numbers]{natbib}
It will be much help you can help point out where did I went wrong :(
Here are the content of the files
.tex file:
\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{babel}
\usepackage[authoryear]{natbib}
\begin{document}
Text here
\citet{Ioannou2001}
\bibliographystyle{IEEEtran}
\bibliography{reference}
\end{document}
.bib file (with only one record)
@ARTICLE{Ioannou2001,
author = {Ioannou, G and Kritikos, M and Prastacos, G},
title = {A greedy look-ahead heuristic for the vehicle routing problem with
time windows},
journal = {J Oper Res Soc},
year = {2001},
volume = {52},
pages = {523--537},
number = {5},
month = apr,
__markedentry = {[duongh:6]},
issn = {0160-5682},
owner = {d},
publisher = {Palgrave Publishers Ltd},
timestamp = {2013.03.29},
url = {http://dx.doi.org/10.1057/palgrave.jors.2601113}
}

IEEEtransstyle which produces\bibitems that are not compatible with thenatbibstyle. In additionIEEEtransis a numeric citation format. – Guido Jul 01 '13 at 02:04