Hi,
For my Thesis, I am required to place the bibliography BEFORE the appendices. When I simply cut and paste, the Table of Contents doesn't show the References anymore? The spacing in the TOC also gets a bit messed up.
Also how can you change the text in the Contents, List of Figures, Tables etc. to black font??
Thanks in advance
Ben
Theses, Books, Title pages ⇒ Bibliography
NEW: TikZ book now 40% off at Amazon.com for a short time.

Bibliography
Hi Ben,
If you would like to maintain the colored links throughout the rest of the document but change the color of the table of contents links to black, just put these two lines around your table of contents and list of figures, tables, etc:
With regard to switching the places of your Appendices and the Bibliography, here's how I did it in main.tex, directly after the inclusion of the main thesis chapters:
Cheers,
Vel
If you would like to maintain the colored links throughout the rest of the document but change the color of the table of contents links to black, just put these two lines around your table of contents and list of figures, tables, etc:
Code: Select all
\hypersetup{linkcolor=black}
<commands to print the table of contents, list of figures, list of tables, etc>
\hypersetup{linkcolor=blue}
Code: Select all
%----------------------------------------------------------------------------------------
% BIBLIOGRAPHY
%----------------------------------------------------------------------------------------
\addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
\backmatter
\label{Bibliography}
\lhead{\emph{Bibliography}} % Change the page header to say "Bibliography"
\bibliographystyle{unsrtnat} % Use the "unsrtnat" BibTeX style for formatting the Bibliography
\bibliography{Bibliography} % The references (bibliography) information are stored in the file named "Bibliography.bib"
%----------------------------------------------------------------------------------------
% THESIS CONTENT - APPENDICES
%----------------------------------------------------------------------------------------
\addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
\appendix % Cue to tell LaTeX that the following 'chapters' are Appendices
% Include the appendices of the thesis as separate files from the Appendices folder
% Uncomment the lines as you write the Appendices
\input{Appendices/AppendixA}
%\input{Appendices/AppendixB}
%\input{Appendices/AppendixC}
\end{document}
Vel
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com