My best guess is that my custom sty is messing something up. I have edited one passed down through the generations. It was printing "Bibliography" really large, and forcing it into the TOC, so I removed the code by adding "%"
Here is a minimal working example:
Code: Select all
\documentclass[12pt]{report}
\usepackage[super,sort&compress,comma]{natbib}
\usepackage[sectionbib]{chapterbib}
\usepackage{indentfirst}
\usepackage{urcsthesisLK}
\usepackage{setspace}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{wrapfig}
\usepackage{esvect}
\usepackage{float}
\usepackage{array}
\usepackage[nottoc, notlof, notlot]{tocbibind}
\renewcommand{\bibname}{}
\begin{document}
%\include{Thesis_opening}
\tableofcontents
\listoftables
\listoffigures
\chapter{Introduction}
\section{Section 1}
blah blah blah
\subsection{wheee subsections}
And I cite lots of things!\cite{Ahuja:2009kx,Ando95,Allen:2005uq,Alvaro:2006zh,Ananias:2000zr,Anderson:2007bd,Andersson:1999oa,Angelikopoulos:2010ta,Angelikopoulos:2011zk,Antaris:2010xv,Arai:2009ix,PSSB:PSSB200669196,doi:10.1021/nl050133o}
\section{more sections}
\section{References}
\begin{spacing}{1}
\setcounter{NAT@ctr}{0}
\bibliographystyle{unsrt-etal-webpage}
\bibliography{min}
\end{spacing}
\end{document}