I'd like to have a separate bibliography (references) and appendix for each
chapter of my "report". Are there packages that provide this
functionality? Thanks,
Heiner
--
Heiner Schulz
hei...@leland.stanford.edu
\usepackage{chapterbib}
Juerg
Heiner Schulz wrote:
>
> Hi all,
>
> I'd like to have a separate bibliography (references) and appendix for each
> chapter of my "report". Are there packages that provide this
> functionality? Thanks,
>
The appendix package goes some way towards meeting your second
request, but requires some work on your part, the amount depending on
what you want. The following assumes that you want the appendices
labelled as a series --- first appendix A, second B, etc., and that you
are using the book or report class (change chapter to section if using
the article class).
\usepackage{appendix}
\newcounter{savechap}\newcounter{saveapp}
\setcounter{saveapp}{0}
...
\chapter{First}
...
\setcounter{savechap}{\value{chapter}}
\begin{appendices}
\setcounter{chapter}{\value{saveapp}}
\chapter{First appendix}
...
\setcounter{saveapp}{\value{chapter}}
\end{appendices}
\setcounter{chapter}{\value{savechap}}
\chapter{Another chapter}
...
\setcounter{savechap}{\value{chapter}}
\begin{appendices}
\setcounter{chapter}{\value{saveapp}}
etc
The \appendix command or appendices environment set the numbering
back to zero, so the above counteracts that.
Peter W.
peter.r...@boeing.com
Heiner Schulz wrote:
>
> Hi all,
>
> I'd like to have a separate bibliography (references) and appendix for each
> chapter of my "report". Are there packages that provide this
> functionality? Thanks,
>
Version 1.1 of the appendix package, just arrived on a CTAN near
you, now provides for per chapter appendices.
Peter W.
peter.r...@boeing.com