Page LayoutAlter Citation Format

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
chapter
Posts: 2
Joined: Fri Aug 17, 2012 4:12 am

Alter Citation Format

Post by chapter »

Hello,

I am having difficulties in changing the citation format.

The current look of the citations are numbers in squared brackets like this "[3]". I require the citations to look like "(R. Bannister, 1998)". How can I change it? Is it stored in the class file I'm using or elsewhere?

My references are cited using the \citep{label} command and the bibliography is written in BibTeX. I have tried using \cite{key} but that gives the same results

Please let me know if you need more information! Thank you!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

josephwright
Site Moderator
Posts: 814
Joined: Tue Jul 01, 2008 2:19 pm

Alter Citation Format

Post by josephwright »

You want a so-called 'author-year' bibliography style. The standard way to do this in LaTeX is to use the natbib package and a suitable \bibliographystyle, for example unsrtnat.

Code: Select all

\documentclass{article}
\usepackage{natbib}
\bibliographystyle{unsrtnat}
Joseph Wright
chapter
Posts: 2
Joined: Fri Aug 17, 2012 4:12 am

Re: Alter Citation Format

Post by chapter »

I thought it would be something really simple, thank you!
Post Reply