0% found this document useful (0 votes)
44 views1 page

Bibliographies - Using Harvard Referencing Style - TeX - LaTeX Stack Exchange

The document discusses how to set up Harvard referencing style using BibTeX in LaTeX documents, providing various options and packages such as natbib and biblatex. It includes user inquiries and responses regarding installation and formatting of citations. The document emphasizes the flexibility of Harvard style and offers specific coding examples for implementation.

Uploaded by

hayeg2024
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
44 views1 page

Bibliographies - Using Harvard Referencing Style - TeX - LaTeX Stack Exchange

The document discusses how to set up Harvard referencing style using BibTeX in LaTeX documents, providing various options and packages such as natbib and biblatex. It includes user inquiries and responses regarding installation and formatting of citations. The document emphasizes the flexibility of Harvard style and offers specific coding examples for implementation.

Uploaded by

hayeg2024
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

bibliographies - Using Harvard referencing style - TeX - LaTeX Stack... https://tex.stackexchange.com/questions/3730/using-harvard-referenci...

_
TeX - LaTeX Stack Exchange is a Here's how it works:
question and answer site for users
of TeX, LaTeX, ConTeXt, and related
typesetting systems. Join them; it
only takes a minute:
The best answers are
Anybody can Anybody can voted up and rise to the
ask a question answer top

Using Harvard referencing style

Can someone point me to some good instructions and resources on how to setup Harvard referencing style (a.k.a. Author-year)
with bibtex in a LaTeX document? The final formatting of the bibliography should look as in this page: http://libweb.anglia.ac.uk
/referencing/harvard.htm

I'm not totally new to LaTeX itself, but didn't use BibTex a lot, other than the default, predefined setup.

{bibliographies} {bibtex} {harvard-style}

edited May 22 '12 at 12:17 asked Oct 3 '10 at 13:13


Bastiaan Quast Juri
349 3 14 186 1 1 5

4 Answers

The Harvard style covers a wide range of choices of exactly how to do things. Using
the natbib package has already been mentioned, while you could also consider
biblatex .

answered Oct 3 '10 at 16:52


Joseph Wright ♦
186k 18 510 830

12 \usepackage[sorting=nyt,style=apa]{biblatex} will give you more or less Harvard citations through


\textcite If you're super lazy (like me) add \let\cite\textcite to your preamble to use \cite
instead of \textcite – Seamus Oct 3 '10 at 20:17

The package you want is here: CTAN/harvard

Instructions for installing packages are here: CTAN, packages, and online help

It depends on your tex distribution. If you are using MiKTex, or another distribution
with a package manager you just need to call the bib style as per usual and the
package manager will handle installation.

answered Oct 3 '10 at 14:07


Dave
268 2 8

It's generally better to use natbib instead of harvard . – Lev Bishop Oct 3 '10 at 15:39

6 And better to use biblatex than natbib? :) (Okay, it can depend.) – Will Robertson Oct 4 '10 at 1:35

3 You can have your cake and eat it too: \usepackage{har2nat} - harvard.sty macros on top of natbib.
– Charles Stewart May 6 '11 at 13:26

An option as been mentioned: \usepackage{harvard}

You can then use it like this:

\citeasnoun[p.42]{knuth} writes that TeX is great...


In \citepossesive[p.43]{knuth} book we can also see something else.

Which would become:

Knuth (1901, p.42) writes that TeX is great...


In Knuth's (1901, p.43) book we can also see something else.

edited May 6 '11 at 20:46 answered May 5 '11 at 14:05


Unapiedra

1 of 1 1/26/2018, 6:13 PM

You might also like