General ⇒ Heading numbered in BibTeX reference
-
- Posts: 5
- Joined: Thu Jun 21, 2007 10:05 am
Heading numbered in BibTeX reference
\bibliographystyle{apalike}
\bibliography{reftesis}
Thanks,
Alfredo
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- countbela666
- Posts: 64
- Joined: Thu Apr 26, 2007 2:44 pm
Heading numbered in BibTeX reference
sounds like a use case for the tocbibind package. Here a minimum working example showing its usage:
Code: Select all
\begin{filecontents}{lit.bib}
@BOOK{test,
author = {Donald Ervin Knuth},
title = {The TeXbook},
year = {1984},
publisher = {Addison-Wesley},
address = {London},
}
\end{filecontents}
\listfiles
\documentclass[english]{report}
\usepackage{babel,blindtext}
\usepackage[%
nottoc,
numbib
]{tocbibind}
\begin{document}
\tableofcontents
\blinddocument
\nocite*{}
\bibliographystyle{apalike}
\bibliography{lit}
\end{document}
Marcel
a thousand worlds for you to see here, take my hand and follow me...
-
- Posts: 5
- Joined: Thu Jun 21, 2007 10:05 am
Re: Heading numbered in BibTeX reference
Thank you a lot. You don't know how much time I lost looking for that response before this post. The package works great

Alfredo