Theses, Books, Title pagesDebugging

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
Post Reply
shray_sharan
Posts: 2
Joined: Wed Jul 01, 2015 6:44 pm

Debugging

Post by shray_sharan »

This section of code is also throwing a warning
This section of code is also throwing a warning
WarningCode.PNG (16.99 KiB) Viewed 2056 times
Hi,

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}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Re: Debugging

Post by Johannes_B »

Hi and welcome,

the documentclass-line should go to the very top of your document.


Your acronym list should not contain a table-environment.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply