BibTeX, biblatex and biberBibliography at the end of each chapter

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
oteskemi
Posts: 2
Joined: Mon May 24, 2010 3:14 pm

Bibliography at the end of each chapter

Post by oteskemi »

Hi all,

I am writing my thesis and I want to have a list of references at the end of each chapter. I have a main file thesis.tex and then calls each chapter using \include{chapter5/chp5}

Each chapter file, chp.tex looks something like this

Code: Select all

\chapter{Coverage effects on Pt Surfaces}
\label{ch:Ptsurfaces}
.
.
.
\let\newchapter\chapter
\renewcommand{\bibname}{References}
\bibliographystyle{achemso}
\bibliography{project}
\addcontentsline{toc}{chapter}{\bibname}
When I include more than one chapter, eg. chapter 4, the bibliography don't work correctly. The bibliography for chapter is exactly the same as chapter 5. I would like the new chapter 4, to start counting from 1 with it's own bibliography at the end of the chapter. Also, the thesis.bib is in the same folder as thesis.tex. All chapters should be generated from the one single bib file.

I'll be grateful for the help in solving this,

Thanks in advance,
kemi

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Bibliography at the end of each chapter

Post by gmedina »

Hi,

you could use either the chapterbib or the bibunits package.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
oteskemi
Posts: 2
Joined: Mon May 24, 2010 3:14 pm

Re: Bibliography at the end of each chapter

Post by oteskemi »

Hi,

Thank you for your reply. However, when I do include the the chapterbib package, the references does not appear at all in the chapters. Is there a specific command for this. I'll grateful if sommeone can point me in the right direction even a tutorial on this.

Thank you
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Bibliography at the end of each chapter

Post by gmedina »

Hi,

unfortunately I don't have time right now to provide a complete example; however, you can find some documentation for chapterbib at the end of the file chapterbib.sty itself.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply