Sietsch
30-10-2011, 14:03
Hi there,
I am currently looking for a way to have the Bibliography showing up in the table of contents (ToC) but without section number. Here goes a small example of what it should look like:
TOC:
Part I 1
Chapter 1 . . . . . . 2
Section 1.1 . . . . . 3
Section 1.2 . . . . . 4
Section 1.3 . . . . . 6
References. . . . . . 8
.
.
.
1 First Chapter
....
1.1 First Section
....
1.2 Second Section
....
1.3 Third Section
....
References
....
I already tried a combination of
\renewcommand{\bibsection}{\subsection*{References }}
and
\addcontentsline{toc}{subsection}{References}
This omits the section number before the References section, but it won't show up in the TOC...
Here is a very small example:
\documentclass[a4paper,twoside,openright,10pt]{memoir}
\usepackage[english]{babel}
\usepackage[sectionbib]{chapterbib}
\begin{document}
\tableofcontents*
\cleardoublepage
\mainmatter
\part{First Part}
\chapter{First Chapter}
\section{First Section}
Test \cite{test} ...
\begin{thebibliography}{1}
\bibitem{test}
\textsc{Test...}
\end{thebibliography}
\end{document}
I know, chapterbib is not necessary in this example but it reflects the problem I am having as in my actual document I have to use it.
Thanks for any help on this,
mkk.
I am currently looking for a way to have the Bibliography showing up in the table of contents (ToC) but without section number. Here goes a small example of what it should look like:
TOC:
Part I 1
Chapter 1 . . . . . . 2
Section 1.1 . . . . . 3
Section 1.2 . . . . . 4
Section 1.3 . . . . . 6
References. . . . . . 8
.
.
.
1 First Chapter
....
1.1 First Section
....
1.2 Second Section
....
1.3 Third Section
....
References
....
I already tried a combination of
\renewcommand{\bibsection}{\subsection*{References }}
and
\addcontentsline{toc}{subsection}{References}
This omits the section number before the References section, but it won't show up in the TOC...
Here is a very small example:
\documentclass[a4paper,twoside,openright,10pt]{memoir}
\usepackage[english]{babel}
\usepackage[sectionbib]{chapterbib}
\begin{document}
\tableofcontents*
\cleardoublepage
\mainmatter
\part{First Part}
\chapter{First Chapter}
\section{First Section}
Test \cite{test} ...
\begin{thebibliography}{1}
\bibitem{test}
\textsc{Test...}
\end{thebibliography}
\end{document}
I know, chapterbib is not necessary in this example but it reflects the problem I am having as in my actual document I have to use it.
Thanks for any help on this,
mkk.