I'm trying to add space under my bibliography's title. My bibliography is saved as a BibTeX file, and I've created my own style using the "makebst" package. Thus, it will be difficult to include a "minimal working example" here. My chapters are separate files, so the end of my main file looks like this:
Code: Select all
\include{Conclusions}
\pagebreak
\singlespacing
\addcontentsline{toc}{chapter}{Literature Cited}
\renewcommand{\bibname}{Literature Cited}
\bibliography{DisBib}
\bibliographystyle{aapalike}
\end{document}
The code governing the spacing on all my other chapters is this:
Code: Select all
\titleformat{\chapter}[hang]{\normalsize\bfseries}{\chaptertitlename\ \thechapter}{1em}{\normalfont\bfseries}
\titlespacing{\chapter}{0pt}{0pt}{0pt}
--Trey