Nearly finished my first LaTeX document. Just one more obstacle to overcome.
Earlier, I had some trouble with the TOC page numbers for my bibliography and a subsequent appendix. I did some digging and discovered I could most easily get correct page numbers using the tocbibind package. I did some additional digging and managed to change the title of the bibliography to "References".
Now I'd like to be able to center "References". I thought this would probably be easy but I'm having a difficult time with it.
Is there some simple way to get this result using tocbibind? If not, how does one go about getting "References" centered without messing up the page numbers?
Below is a code example to show what code I've been using thus far.
Thanks,
Paul
Code: Select all
\documentclass[lettersize,10pt]{article}
\usepackage[nottoc,other]{tocbibind}
\renewcommand{\tocbibname}{REFERENCES}
\begin{document}
\bibliographystyle{unsrtnat}
...
\newpage
\bibliography{AppendixA}
\phantomsection
\end{document}