I am writing a thesis manual using latex.I have encountered 1 error and several bad box overfull warnings. The error is Can be used only in preamble and the warnings are Overfull \hbox (4.0pt too wide) has occurred while \output is active. I am also attaching a screenshot of another file in the code.
For some warnings I am not sure what the relevant code is. Please let me know what else information should i provide.
Code: Select all
\begin{document}
\hfuzz=0.1pt
\include{data/cover} %only store parameter
\maketitle
\frontmatter
\documentclass[10pt]{TAMUthesis}
\include{data/Abstract}
\include{data/Dedication}
\include{data/Acknowledgment}
\include{data/Nomenclature}
\TAMUTableofContentsFormat
%The line below add Word `Page` on next page Table of Content (TOC). To add the third page word `Page`, Please apply the same command below at appropriate position.
%\TAMUTocAddWordPage
\tableofcontents
\TAMUListOfFiguresFormat
%\TAMULofAddWordPage %Add word `Page` on next page in List of Figure (LOF)
\listoffigures
\TAMUListOfTablesFormat
%Comment the line below to add Word `Page' on next page of List of Figure
%\TAMULotAddWordPage
\listoftables
\mainmatter
\include{data/chapterI}
\include{data/chapterII}
\include{data/chapterIII}
\include{data/chapterIV}
% \include{data/myNewChapterName.tex}
\TAMUReferenceFormat
\bibliographystyle{ieeetr}
\bibliography{data/myReference}
\appendix
\TAMUAppendixFormat
%comment the line below if using ChapterMethod or there is no Appendix
\begin{appendices}
%keep this line always if you have appendix
\include{data/Appendix}
%comment the line below if using ChapterMethod or no Appendix
\end{appendices}
\end{document}