Theses, Books, Title pagesBibliography

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
Post Reply
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Bibliography

Post by templateuser »

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Vel
Site Moderator
Posts: 463
Joined: Fri Jun 29, 2012 1:20 am

Bibliography

Post by Vel »

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:

Code: Select all

\hypersetup{linkcolor=black}
<commands to print the table of contents, list of figures, list of tables, etc>
\hypersetup{linkcolor=blue}
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:

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}
Cheers,
Vel
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
Post Reply