我正在使用 isuthesis 包来撰写我的论文。
http://www.github.com/srvanderplas/Dissertation/blob/master/isuthesis.cls
我希望目录的字体大小为 14,行距为 1.5。同样,表格列表和图表列表的字体大小应为 14,行距为 1.5。请提出建议。
% 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}
下面给出的是第 1 章代码。
% 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.
答案1
如果你不必使用这类文件,删除它。彻底删除。你会遇到更多麻烦。请参阅博士论文:模板与草稿。
您可以做类似的事情,但请不要这样做。
Isuthesis
实现 setspace 包的部分。这真是一团糟。
\documentclass[11pt]{isuthesis}
\usepackage{isutraditional} \chaptertitle
\usepackage{tocbibind}
\begin{document}
\begingroup
\makeatletter
\renewcommand\@chapapp{}
\makeatother
\fontsize{14pt}{16pt}\selectfont
\setstretch{1.3}
\tableofcontents
\listoftables
\listoffigures
\endgroup
\newpage
\pagenumbering{arabic}
\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.
\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.
\end{document}