I hope this is a simple question, but I've been googling it all evening and haven't made much progress. I am currently working on converting my CV to LaTeX (which is going quite well), but I've come across one hurdle: I have many BibTeX entries from the same year. In a typical paper, these references should be given individual identifiers (e.g. Author, 1990a; Author, 1990b; and so on), however, in a CV, this looks a little silly.
Does anyone know how I can disable the automatic lettering of references from the same year?
I am using natbib and bibentry and the apalike bibliography style
Preamble:
\documentclass[10pt]{article}
\usepackage[NoDate,LabelsAligned]{currvita}
\usepackage[american]{babel}
\usepackage{csquotes, natbib, bibentry, anysize, titlesec}
\usepackage[hmargin=1in,vmargin=1in]{geometry}
\pagestyle{headings}
\setcounter{page}{1}
\titlespacing*{\subsubsection}{10pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
\newcommand{\bibverse}[1]{\begin{verse} \bibentry{#1}. \end{verse}}
Document:
\begin{document}
\nobibliography*
\begin{cv}{}
\subsection*{Publications}
\bibverse{Author2012}
\bibverse{Author2012a}
\end{cv}
\bibliographystyle{apalike}
\nobibliography{ReferenceDesk}
\end{document}
apalikestyle file, it's not possible to bypass editing the style file. – Mico Nov 22 '14 at 14:53