1) The last line of the title page reads "(c) Jordan M. Reynolds 2006". This is missing a comma, and should read "(c) Jordan M. Reynolds, 2006". FoGS will either allow you to hand write in the comma, or you can do so before taking it down. But they will comment on it. 2) Make sure your name is written in full on the cover page if thats how it is entered in the UBC computer system. For example I initially had my name written as "Jordan M. Reynolds" on the cover, I was told that I was in the computer under my full name "Jordan Michael Reynods" and was asked to change it. 3) \submitdate{\today} is shown in the example file, this will incorrectly print the date, incuding day on the title page. You should simply change this to \submitdate{December 2006} for exampe (make sure the month is written in full). 4) Under the default style, appendix entries in the Table of Conents show simply as "A subtitle" where they are required to be listed as "Appendix A subtitle". There is no really clean way to fix this, I spent several hours messing around with \renewcommands trying to get it to show the way they require, while still maintaining the correct chapter headings in the appendix itself. If you are more of a texpert then I am, you can probably fix this, but I started something like : \setcounter{0}{chapter} \renewcommand\thechapter{Appendix \Alph{chapter}} \renewcommand\thefigure{\Alph{chapter}.\arabic{figure}} \renewcommand\theequation{\Alph{chapter}.\arabic{equation}} This almost worked correctly, but left each of my chapter headings as : Chapter Appendix A. A much cheaper and dirtier (and faster) hack is to simply compile your document into its final form. Then add the command \nofiles in the top level .tex file. This will force latex not to regenerate the .toc file, you can then go in, and manually add the "Appendix" before the A or B in the raw .toc file. When you recompile the TOC will look like it should. Just remember to remove the \nofile command if you are re-compliling with changes. Just change the line : \contentsline {chapter}{\numberline {B}{Dataset}}{78}{appendix.B} To : \contentsline {chapter}{Appendix \numberline {B}{Dataset}}{78}{appendix.B} and FoGS should be happy. -Good luck