Theses, Books, Title pages ⇒ Bibliography
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Bibliography
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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Bibliography
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