Bibliography style

Post date: Dec 9, 2011 4:32:44 PM

There are 2 things:

  1. determine the bibliography style using
      1. \bibliographystyle{bib_style_file.bst}
    1. The bib style (.bst) file will determines the style of the reference. For example, K. Kampa or Kittipat Kampa.
  2. specify the bibliography file using
      1. \bibliography{my_references.bib}
    1. A bib file contains the references used in the paper.

Here is an example of how to use it

\bibliographystyle{plain} % (uses file "plain.bst") \bibliography{myrefs,yourrefs} % expects file "myrefs.bib" and "yourrefs.bib"

For more details, please refer to the URL below

http://amath.colorado.edu/documentation/LaTeX/reference/faq/bibstyles.html