I am using isuthesis package for writing my thesis.
http://www.github.com/srvanderplas/Dissertation/blob/master/isuthesis.cls
I want my table of contents to have font size 14 and one and half line spacing. Similarly List of table and List of Figures should have 14 font size and one and half line spacing. Please suggest.
% Template file for a standard thesis
\documentclass[11pt]{isuthesis}
\usepackage[pdftex]{graphicx}
% Standard, old-style thesis
\usepackage{isutraditional} \chaptertitle
% Old-style, thesis numbering down to subsubsection
\alternate
%Optional Package to add PDF bookmarks and hypertext links
\usepackage[pdftex,hypertexnames=false,linktocpage=true]{hyperref}
\hypersetup{colorlinks=true,linkcolor=blue,anchorcolor=blue,citecolor=blue,filecolor=blue,urlcolor=blue,bookmarksnumbered=true,pdfview=FitB}
\begin{document}
\include{preface/abstract}
% Table of Contents, List of Tables and List of Figures
\pdfbookmark[1]{TABLE OF CONTENTS}{table}
\tableofcontents
\addtocontents{toc}{\def\protect\@chapapp{}} \cleardoublepage \phantomsection
\addcontentsline{toc}{chapter}{LIST OF TABLES}
\listoftables
\cleardoublepage \phantomsection \addcontentsline{toc}{chapter}{LIST OF FIGURES}
\listoffigures
% Comment out the next line if NOT using chaptertitle
\addtocontents{toc}{\def\protect\@chapapp{CHAPTER\ }}
\newpage
\pagenumbering{arabic}
\include{Body/chapter1}
%\include{Reference/biblio}
\end{document}
below given is the chapter 1 code.
% Chapter 1 of the Thesis Template File
\chapter{OVERVIEW}
This is the opening paragraph to my thesis which
explains in general terms the concepts and hypothesis
which will be used in my thesis.
With more general information given here than really
necessary.
\section{Introduction}
Here initial concepts and conditions are explained and
several hypothesis are mentioned in brief.
\subsection{Hypothesis}
Here one particular hypothesis is explained in depth
and is examined in the light of current literature.
\subsubsection{Parts of the hypothesis}
\begin{table}[h!tb] \centering
\setlength{\captionwidth}{3.5 in}
\isucaption{This table shows a standard empty table with
a limited captionwidth}
\label{nevermore}
\vspace{ 2 in}
\end{table}
Here one particular part of the hypothesis that is
currently being explained is examined and particular
elements of that part are given careful scrutiny.
% Below \subsubsection
% Sectional commands: \paragraph and \subparagraph may also be used
\subsection{Second Hypothesis}
\begin{table}[h!tb] \centering
\setlength{\captionwidth}{3.5 in}
\isucaption{This table shows a second standard empty table with
a limited captionwidth}
\label{nevermore}
\vspace{ 2 in}
\end{table}
Here one particular hypothesis is explained in depth
and is examined in the light of current literature.
\subsubsection{Parts of the second hypothesis}
Here one particular part of the hypothesis that is
currently being explained is examined and particular
elements of that part are given careful scrutiny.
\section{Criteria Review}
Here certain criteria are explained thus eventually
leading to a foregone conclusion.
{\onehalfspacing \fontsize{14}{16}\selectfont \tableofcontents }with\usepackage{setspace}on. – Dec 03 '14 at 11:51isuthesis.clstemplate could seriously benefit from some major clean-up and streamlining. – Mico Dec 06 '14 at 16:57