1

I am finishing my project and I just need to tidy up my references. At the moment my references are numbered (i.e [1], [2],...) and in alphabetical order (surname) but the first name appears first. I have two problems that I wish to fix.

  1. How do I get rid of the numbering (I don't use it so it is just confusing).

  2. I want the surname to appear first not the first name.

Clearly I want to retain the alphabetical order (surname).

Edit:

I am using Biktex (nothing extra). Essentially I am copy pasting from google scholar the references that are provided under bibtex. My referencing style is Harvard, i.e, blah blah blah (Feynman 1999).

Thanks.

Andy
  • 69

1 Answers1

2

The plain bibliography style can only generate numeric-style citation call-outs.

To solve the first problem you raise, I suggest you (a) change \bibliographystyle{plain} to \bibliographystyle{plainnat}, (b) add the instruction \usepackage[authoryear,round]{natbib} in the preamble, and (c) perform a full recompile cycle -- LaTeX, BibTeX, and LaTeX twice more -- to fully propagate all changes.

Mico
  • 506,678