Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Bibliography / Appendix for each chapter

14 views
Skip to first unread message

Heiner Schulz

unread,
Feb 29, 2000, 3:00:00 AM2/29/00
to
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,

Heiner

--
Heiner Schulz
hei...@leland.stanford.edu

Juerg Tschirren

unread,
Feb 29, 2000, 3:00:00 AM2/29/00
to
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,
>
> Heiner
>
>
> Heiner Schulz
> hei...@leland.stanford.edu


\usepackage{chapterbib}

Juerg

Peter Wilson

unread,
Feb 29, 2000, 3:00:00 AM2/29/00
to Heiner Schulz

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

Peter Wilson

unread,
Mar 1, 2000, 3:00:00 AM3/1/00
to Heiner Schulz

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

0 new messages