Generalbibunits | Bibliography as an Appendix

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
nvx
Posts: 25
Joined: Mon Dec 17, 2007 7:49 pm

bibunits | Bibliography as an Appendix

Post by nvx »

Hello,

is it possible to add bibliography as a "numbered" appendix when the bibunits package is used? So far I was able to get

Code: Select all

...
Appendix A  Abcabc                      139
Appendix B  Xyzxyz                      151
Appendix Complete List of References    155
but the bibliography is not "numbered," i.e., there should be "Appendix C Complete List of References" instead.

Moreover, so far I have been unable to force LaTeX to typeset the appropriate bibliography heading (same type as for regular chapters or other appendices). It only typesets bibliography title without any "Appendix C" (which usually is perfectly fine, but now - when bibliography is technically an appendix and as such it should be "numbered" - is rather unsatisfying). The code I am using is the following:

Code: Select all

\documentclass[a4paper,twoside,12pt,fleqn]{report}
\usepackage{bibunits}
\usepackage[titletoc,header]{appendix}
\renewcommand{\appendixname}{Appendix}
\renewcommand{\appendixtocname}{List of Appendices}
% ...
\cleardoublepage
\phantomsection  % Entry in ToC does not point to correct location (hyperref) if removed
\addcontentsline{toc}{chapter}{Complete List of References} % Entry not in ToC if removed
\renewcommand\bibname{Complete List of References}
\begin{bibunit}[mystylecaps]
\defaultbibliography{BibC}
\nocite{*}
\putbib[BibC]
\end{bibunit}
which produces

Code: Select all

 -------------------------------------
|                                   |
|   Complete List of References     |
|                                   |
|   ...                             |
|                                   |

|                                   |
|                                   |
|                                   |
 -------------------------------------
instead of

Code: Select all

 -------------------------------------
|                                   |
|   Appendix C                      |
|   Complete List of References     |
|                                   |
|   ...                             |

|                                   |
|                                   |
|                                   |
 -------------------------------------
I thought I might add a new appendix using \chapter{...} and then put bibliography there without its header, but that seems to be infeasible (\putbib[...] always typesets the header and there are no parameters suppressing it that I know of).

So, is there any way to get "Appendix C Complete List of References" in the table of contents and bibliography header typeset in the same (i.e., "numbered") way as other appendix headers?

Any help would be greatly appreciated.

nvx
Last edited by nvx on Thu Jul 07, 2011 3:21 pm, edited 1 time in total.

Recommended reading 2024:

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

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

nvx
Posts: 25
Joined: Mon Dec 17, 2007 7:49 pm

Re: bibunits | Bibliography as an Appendix

Post by nvx »

In case anyone is interested, a solution can be found at http://www.latex-community.org/forum/vi ... 954#p52954.

nvx
Post Reply