I am trying to write a class file based upon the report style file.
I have disabled the automatic resetting of the figure number when the chapter counter is incremented. However, there is a 10pt space included in the LOF and LOT between figures in different chapters.
I know that
Code: Select all
\addtocontents{lof}{\vspace*{-10pt}}\addtocontents{lot}{\vspace*{-10pt}}
will put a bandaid on things by adding a negative space to counter the positive space, but this sort of thing annoys me. (I assume that there is a more permanent way to do this).
Below is the class file I'm working on...done a lot of internet scavenging for the code, so please assume that I know very little about writing style files.
Any ideas?
Keith
Code: Select all
\NeedsTeXFormat{LaTeX2e}\ProvidesClass{MathThesis}\DeclareOption*{\PassOptionsToClass{\CurrentOption}{report}}\ProcessOptions\LoadClass[12pt]{report}\RequirePackage[total={6in, 8.5in}, top=1.5in, left=1.5in, headheight=15pt, headsep=0.5in, footskip=0.5in]{geometry}\RequirePackage[reqno]{amsmath}\RequirePackage{amsthm}\RequirePackage{amsfonts}\RequirePackage[mathscr]{eucal}\RequirePackage{setspace}\RequirePackage{cite}\RequirePackage{fancyhdr}\RequirePackage{graphicx}\RequirePackage{subfigure}\RequirePackage[subfigure]{tocloft}\RequirePackage{remreset}%% ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~% Modifications of the base class begin here% ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%%% Definitions for Theorems, Corollaries, etc.%\newtheorem{corollary}{Corollary}[section]\newtheorem{lemma}{Lemma}[section]\newtheorem{theorem}{Theorem}[section]\newtheorem{proposition}{Proposition}[section]\newtheorem{definition}{Definition}[section]%