我正在撰写论文,使用我所在大学独有的文档类别 - 基于该article
类别。我必须删除所有大胆的在目录中进行格式化,并且由于某种原因,我在使用该tocloft
包时收到无法弄清楚的错误。
要删除大胆的在目录的标题中,并将其重命名为目录,我使用了\renewcommand
...但正如您在下面看到的,为了正确格式化标题页,我使用了\bigskip
很多,而这似乎是tocloft
不喜欢的:
\documentclass{csun}[12pt]
\renewcommand{\contentsname}{\textnormal{Table of Contents}}
\begin{document}
\pagenumbering{roman}
\thispagestyle{empty}
\begin{large}
\begin{center}
CALIFORNIA STATE UNIVERSITY, NORTHRIDGE
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
Fermi Coordinates and Relative Motion in Inflationary Power Law Cosmologies
\bigskip
\bigskip
A thesis submitted in partial fulfilment of the requirements
for the degree of Master of Science Mathematics
\bigskip
by
\bigskip
The Author
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\vspace*{8 em}
December 2012
\pagebreak
\end{center}
\pagebreak
\chapter*{\textnormal{Dedications}}
\addcontentsline{toc}{chapter}{Dedications}
Dedication goes here.
\tableofcontents %makes a ToC with chapter names and page numbers bolded.
My thesis goes here.
\end{large}
\end{document}
抱歉,这是一大段代码,我知道这不是最小的,但我认为它很重要。当我尝试使用tocloft
并点击转到错误时,它会将我发送到其中一个\bigskip
。错误消息显示:
Error: Command \c@lofdepth already defined.
Or name \end... illegal
关于如何工作tocloft
或如何删除大胆的如果不格式化的话tocloft
将不胜感激。
答案1
您正在使用的类包的链接是http://www.csun.edu/~mathgs/LaTex.html,给定链接中的类现在名为CSUNthesis.cls
。您的文档将无法使用您提供的代码进行编译。您需要在序言中提供以下信息,因为根据文档,这些信息是必需的。
\author{<author–name>}
\committee {<chair member>}{<2nd member>}{<3rd member>}
\title{<title of work>}
\coordinator{<coordinator–name>}
\submitted {<month>}{<year>}
\abstract{<abstract material>}
根据给定的链接,CSUNthesis.cls
“自动生成符合校园指南的文档。”
因此,恕我直言,最好遵循类文件提供的文档。
顺便说一句,有一个可选\dedication{<>}
命令可用于排版您的献词。
下面的代码运行得很好,我在目录中看不到粗体字母。
\documentclass[12pt]{CSUNthesis}
\author{Sam}
\committee{Jose}{Pepito}{Juan}
\title{Title}
\coordinator{The Coordinator}
\submitted{December}{2012}
\abstract{This is the abstract material and nothing more.}
\dedication{Dedication goes here.}
\begin{document}
\end{document}
如果您进行了csun.cls
修改,也许您可以提供修改后的类文件的链接。