Linux & Ubuntu/LaTex | Posted by 알 수 없는 사용자 2009. 4. 2. 12:04

use BibTex with latex

 

  1. Download a bibliography style file such as h-physrev3.bst,  into the directory where your document is. (There are many options about - just look around the web.)
  2. Create your bibliography database file by downloading (into the directory where your document is) and editing the example file tau.bib.
  3. Remove any  \begin{thebibliography}  ...  \end{thebibliography}  commands from your document.
  4. Just before the  \end{document}  command, add

    \bibliographystyle{h-physrev3.bst}
    \bibliography{tau}
    

    (Alternatively, just download and edit this example  file.)

  5. When processing the file, you need to do: latex filename, bibtex filename, latex filename, latex filename.