Hello I am trying to write my thesis to include different chapters my master tex document looks like this:
\documentclass[11pt a4paper]{report}
\usepackage[left=4.0cm, right=1.5cm, top=1.5cm, bottom=2.5cm]{geometry}
\usepackage{graphicx}
\usepackage{float}
\usepackage{grffile}
\usepackage{amsmath}
\usepackage{fixltx2e}
\usepackage{textgreek}
\usepackage{setspace}
\onehalfspacing
\usepackage[nottoc,notlof,notlot]{tocbibind}
\renewcommand\bibname{References}
\graphicspath{ {./Thesis pictures/} }
\includeonly{Chapter3_content1}
\begin{document}
\title{
\huge{\textbf{Luminescent properties of semiconductor materials}}\\[1.2cm]
\Large{A thesis submitted to the University of Manchester \\ for the degree of Doctor of Philosophy in the Facultly of Engineering and Physical Science} \\[1cm]
\Large{2015} \\
\Large{Rachel Southern-Holland} }
\author{}
\date{}
\maketitle
\newpage
\include{F:/Rachel_thesis/Chapters/Chapter3_content1}
\addcontentsline{toc}{chapter}{References}
\bibliography{PhD_Library}
\end{document}
and the tex file Chapter3_content1 looks like this
\chapter
this is my methods chapter
However when I compile the master document I only get the title page and not the content from the Chapter3_content1 file. Any ideas what I am doing wrong? Thanks a lot
\include, but only the filename in\includeonly. – Torbjørn T. Mar 05 '15 at 12:59\include; for security reasons, TeX will refuse to write the.auxfile pertaining to such an\included file. – egreg Apr 04 '15 at 15:22