%% ====================================================================%%
%%	Sample Driver file for use with uwthesis.sty
%% 	To print this document in the Math Dept, 
%%	do the following:
%%  		latex main
%%		bibtex main
%%		latex main (you may have to do this twice at this point)
%%		dvipr main
%%	To run this sample, you will also need the following files
%%		abs.tex, ack.tex,
%%		chap1.tex, chap2.tex, appendix.tex	
%%		thesis.bib	
%% ====================================================================%%
%% 
\documentclass[12pt]{report}
%% If you want to  process the graphics examples in Chap 3 uncomment this line
%\usepackage{mythesis,pst-plot,pstcol,graphicx,tgrind}
%% Use this if you only want to do Chap 1 things - basic stuff
%% NOTE: the uwthesis style file should go AFTER all the other packages
%% You may have conflicts if you call the amsthm.sty package after uwthesis.sty
\usepackage{amssymb,uwthesis}
%%
%% mythesis.sty defines additional environments like theorem, formula, etc.
%% pst-plot.sty, pstcol.sty allows you to do fancy plots like
%% the trig functions in Chap 3
%% graphicx.sty allows you to includes .eps files in your thesis
%% tgrind.sty pretty prints text as in the appendix
%%
%% For drafts of one or more chapters, uncomment the relevant line
%% by removing the leading percent %:
%%
%\includeonly{}                    % Only front matter and back matter
%\includeonly{chap1}                % !  plus chapter 1
%\includeonly{chap1,chap2}         %  plus chapter 1 and 2
\includeonly{chap1,chap2,%        % BEWARE: First % kills white space
             appendix}            % plus chapters 1-2, appendix
%
%\tracingstats=2                % show TeX memory usage
\begin{document}
%% Comment out items by inserting a percent % character
\title{REPRESENTATION OF SOLUTIONS TO LINEAR\protect\\
       ALGEBRAIC EQUATIONS}
\author{Fred Krylov}
%\inputpicturetrue  % By Jeff McGough. See uuguide and private thesis.sty
%\inputpicturefalse % To NOT produce pictures, uncomment this line
%% You may want to change these if you are in a different department
%% or getting a different degree or writing a thesis instead of a dissertation
\degree{Doctor of Philosophy}
\dept{Mathematics}
\thesistype{dissertation}
%% Starts page numbering as i, ii, etc.
\beforepreface
\prefacesection{Abstract}
\input abs
\prefacesection{Acknowledgements}
\input ack
\listoffigures
\listoftables
% Optional front page, made from source "notation.tex".
% If you don't need it, then don't use it.
%
%\optionalfront{Notation and Symbols}{\input{notation.tex}}

%% Start the thesis itself, pages numbered 1, 2, etc.
% Start normal page numbering. Parts and chapters follow.%
\afterpreface
\include{chap1}
\include{chap2}
%% Start the appendices:
\appendix       % Chapters, sections are now appendix style
\include{appendix}
%
% The choice of bibliography style is a major decision, jointly made
% by you, your thesis advisor and the thesis editor. Common choices are
% "siam", "acm", "amsplain", "plain", "chicago".
%
\bibliographystyle{siam}
\bibliography{thesis}

\end{document}
