Could you please help. I am writing my dissertation. I'm nearly done but struggling to include my references. I am using WinEdt (book). When I compile latex, bibtex and latex twice again my bibliography still does not appear (it is on the table of contents though). Also when I run bibtex I get an error messages:
Code: Select all
Command Line: bibtex.exe "Project_main"Startup Folder: C:\Users\Alex Uni\Documents\Third year\PROJECT\LATEXThis is BibTeX, Version 0.99d (MiKTeX 2.9 64-bit)The top-level auxiliary file: Project_main.auxI found no \citation commands---while reading file Project_main.auxI found no \bibdata command---while reading file Project_main.auxI found no \bibstyle command---while reading file Project_main.aux(There were 3 error messages)
Code: Select all
\documentclass[a4paper,11pt,oneside,openany]{book}\usepackage{amsmath,amssymb,amsthm,booktabs,multirow,float}\usepackage{mathtools}\usepackage{graphicx,color}\usepackage{biblatex}\usepackage{caption}\usepackage{wrapfig}\usepackage{subcaption,subfig}\usepackage[toc]{glossaries}\usepackage[titletoc]{appendix}\bibliography{biblio.bib}\frontmatter\begin{titlepage}\newpage\tableofcontents\mainmatter\setcounter{page}{1}\pagestyle{headings}\printglossaries\input{Chapter1.tex} %%% Write Chapter 1 in a file called Chapter1.tex %%%\input{Chapter2.tex} %%% Write Chapter 2 in a file called Chapter2.tex %%%\input{Chapter3.tex} %%% Write Chapter 3 in a file called Chapter3.tex %%%\input{Chapter4.tex} %%% Write Chapter 3 in a file called Chapter3.tex %%%\input{Chapter5.tex} %%% Write Chapter 3 in a file called Chapter3.tex %%%\input{Chapter6.tex} %%% Write Chapter 3 in a file called Chapter3.tex %%%\input{Conclusion.tex}\backmatter\nocite{*}\bibstyle{numeric}\printbibliography\addcontentsline{toc}{chapter}{Bibliography}
Alex