BibTeX, biblatex and biberFormat of Reference List

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
johnzhao2835
Posts: 1
Joined: Sun Aug 11, 2013 2:25 pm

Format of Reference List

Post by johnzhao2835 »

I am trying to use BibTeX to include the reference list. In the BibTeX database file I have this entry.

Code: Select all

@article{paper:1,
  author={Prentice, R. L.},
  title={Paper Title},
  journal={Journal Name},
  volume={73},
  number={1},
  pages={1–-11},
  year={1986},
  month={},
  note={},
}
The source file consists of these lines.

Code: Select all

\documentclass[12pt,a4paper,openany]{book}
\usepackage[round,sort]{natbib}

\bibliographystyle{plainnat}

\begin{document}
  This is a test.
  \citet{Paper:1} said something.

  \bibliography{Reference}
\end{document}
The result in the text is this.
This is a test. Prentice (1986) said something.
The result in the reference list is this.
R. L. Prentice. Paper title. Journal Name, 73(1): 1-11, 1986
Is it possible for me to keep the form of that citation but have the format of the reference list in the way like:
[1] Prentice, R. L.. Paper Title. Journal Name, 1986, 73(1): 1-11
Thank you.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX books
Post Reply