I am trying to achieve in-text citations of this form:
I need the actual bibliography to look like this:According to Smith (2005), Bibtex is hard to get your head around. Other people agree (Jones, 2009).
My testing source file looks like this:Smith, J (2005), Title of the article, Journal title, Volume, Pages.
Code: Select all
\documentclass[10pt,a4paper,twocolumn,titlepage]{article}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{fourier}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\usepackage{natbib}
\setcitestyle{round}
\begin{document}
\cite{key} is here to test the application of Biblatex \citep{key}.
\bibliographystyle{plainnat}
\bibliography{Test}
\end{document}
Code: Select all
@article{key,
author = {Jones, J.},
title = {Title},
journal = {Journal Title},
year = {2005},
OPTkey = {•},
OPTvolume = {6},
OPTnumber = {•},
OPTpages = {555-557},
OPTmonth = {•},
OPTnote = {•},
OPTannote = {•}
}
It doesn't even feature the volume number or page number. Whilst I need:J.Jones. Title. Journal Title, 2005.
Any ideas? I am pretty new to this so would be very grateful for some help.Jones, J. (2005), Title, Journal Title, Volume, Pages.