tags:

views:

123

answers:

1

Hi everyone

I am writing my thesis and i am using the chapterbib option, while it makes beautiful bibliographies for my chapters, i can't get it to do the same thing for my appendices

premable:

\documentclass[pdftex, 11pt, onecolumn, openany]{report}
\usepackage{amsmath}
\usepackage[pdftex]{graphicx}
\usepackage{appendix}
\usepackage[sectionbib]{chapterbib}
\usepackage{chapterbib}

\begin{document}
...
\include{background}
\include{ATRPcomp}
\include{CCTcomp} \appendix
\include{AppCCT}
\end{document}

in each of my chapter sections and appendix I have:

\chapter{Compartmentalization in Catalytic Chain Transfer}
...
\bibliography{references}

Does the chapterbib work also for appendices or is there another option that will help it?

Thank you!!!!!!

A: 

I assume the package to work also within the appendix. I fact, when you issue the command \appendix the sectioning commands' behavior is the same, except for the numbering (and perhaps the heading).

In the main matter, the chapter command \chapter{CCTcomp} gives you

7 CCtcomp

(7 is an example). The commands sequence

\appendix
\chapter{AppCCT}

gives you

A AppCCT

The bibliography shoud work properly.

Alessandro C.
The \appendix is changing my Table of Contents appropriately, but no bibliography is appearing in my appendices although the code \bibliography{references} is the same in those chapters as the main chapters in the text.I am also now using only\usepackage[sectionbib]{chapterbib}and have deleted the second "\usepackage{chapterbib}"Please help!Thanks :)
Mary