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
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}
Code: Select all
-------------------------------------
| |
| Complete List of References |
| |
| ... |
| |
| |
| |
| |
-------------------------------------
Code: Select all
-------------------------------------
| |
| Appendix C |
| Complete List of References |
| |
| ... |
| |
| |
| |
-------------------------------------
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