Hello I am newbie with Latex and I couldn't compile my bibliography.tex when I comment it the pfd work well but when I uncomment it. the PDF doesn't appear and I couldn't resolve it I tried a lot this is my code
\documentclass[a4paper,12pt,oneside,latin1,utf8]{StyleRapport}
\include{formatAndDefs}
\usepackage{breakcites}
\usepackage{makeidx}
%\makeindex
\usepackage{multirow}
\usepackage{latexsym}
\usepackage{cite}
%\usepackage[latin1]{inputenc}
%\usepackage[utf8]{inputenc}
\usepackage{float}
\usepackage{epsfig}
\usepackage{epstopdf}
\usepackage{array}
\usepackage{acronym}
\usepackage{colortbl}
\usepackage[table]{xcolor}
\usepackage{fancyhdr}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{titletoc}
\usepackage{minitoc}
\usepackage{ragged2e}
\usepackage{xcolor}
\usepackage{slashbox,booktabs,amsmath}
\pagestyle{fancy}
\newcommand{\chaptertoc}[1]{\chapter*{#1}
\addcontentsline{toc}{chapter}{#1}
\markboth{\slshape\MakeUppercase{#1}}{\slshape\MakeUppercase{#1}}}
\renewcommand{\headrulewidth}{0.3pt}
\fancyhf{}
\renewcommand{\chaptermark}[1]{\markboth{\bsc{\chaptername~\thechapter{} :} #1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection{} \ #1}}
\renewcommand{\headrulewidth}{0.3pt}
\lhead[]{\small{\rightmark}}
\rhead[\small{\leftmark}]{}
\cfoot[\small{\thepage}]{\thepage}
\begin{document}
\include{PageDeGarde}
\dominitoc
\pagenumbering{roman}
\frontmatter
\chapter*{Remerciements}
\mainmatter
\include{IntroductionGenerale}
%\mainmatter
\include{Chapter1}
\bibliographystyle{StyleRapport}
\bibliography{Bibliographie}
\cleardoublepage
\end{document}
My bibtex file called bibliography.tex and there is no bibliography.aux or bibliography.bll

\usepackage{fancyhdr}and\usepackage{xcolor}– samthecodingman May 25 '16 at 11:01bibliography.auxorbibliography.bblfiles present? – samthecodingman May 25 '16 at 11:03bibliography.texorbibliography.bib? The latter works. The former, I think, does not. – Ritz May 25 '16 at 11:21\bibliography{bibliography}(with lowercase b and y instead of ie). The command is used as following:\bibliography{<name-of-your-.bib-file>}– ebosi May 25 '16 at 11:44\bibliography{Bibliographie}, sonatbib(that usesbiblatexprocessing) will look for the fileBibliographie.bib. If you don't have this file (but ratherbibliography.bibas you explained), your references will never be found! Btw, as your example is far from minimal, I think (but not sure) you don't load\usepackage{natbib}that defines the\citecommand and enables the processing of you.bibfile... – ebosi May 25 '16 at 11:56.texfile is calledfile.tex, then you will get a file calledfile.auxwhen you run pdfLaTeX. And it has to be the correct filename. If your.bibfile is calledBibliographie.bib, then you should have\bibliography{Bibliographie}in the.texfile. – Torbjørn T. May 25 '16 at 11:58biblatex? And you don't neednatbibto use\cite. – Torbjørn T. May 25 '16 at 12:00BibTeX(for one's interrest: bibtex vs. biber and biblatex vs. natbib). I didn't knew you could use\citewithoutnatbib. Is it the case for\bibliographyas well? – ebosi May 25 '16 at 12:04