Wednesday, December 28, 2005

About bibliography

[1] Add bibliography to each chapter:

To have a single bibliography sectioned by chapters, use chapterbib - see the chapterbib.sty file for details. Here's a short example: in your main document (called test.tex say), use the information in test.bib

\documentclass{book}
\bibliographystyle{plain}
\usepackage[gather]{chapterbib}

\begin{document}
\include{One}
\include{Two}
\include{Three}

\bibliography{test}
\end{document}

Each included file can be something like this
\chapter{One}
\bibliographystyle{plain}
\cite{KP78}
\cite{H90}
\bibliography{test}

Then process as follows
latex test
bibtex One
bibtex Two
bibtex Three
latex test
latex test
---------------- copy from website

[2] In my paper:
\documentclass[11pt]{article}
\bibliographystyle{plain}
\usepackage{cite}
.......
\bibliography{C:/Data/Documents/Paper_Review/Summary/jab_myref}


No comments:

Post a Comment