使用我的大学乳胶模板

使用我的大学乳胶模板

我有我的大学论文模板,但运行起来有问题。我使用 Mac(OS X)上的 TexShop 运行它。模板如下:

\documentclass[oneside,final, letterpaper]{ucr}
\begin{document}

% Declarations for Front Matter

\title{The title goes here}
\author{John Joe Smith}
\degreemonth{December}
\degreeyear{2009}
\degree{Doctor of Philosophy}
\chair{Professor Michael Jordan}
\chairtwo{Professor Kobe Bryant}
\othermembers{Professor LeBron James}
\numberofmembers{3}
\field{Computer Science}
\campus{Riverside}

\maketitle
\copyrightpage{}
\approvalpage{}

\degreesemester{Fall}

\begin{frontmatter}

\begin{acknowledgements}
I am grateful to my advisor, without whose help, I would not have been here.
\end{acknowledgements}

\begin{dedication}
\null\vfil
{\large
\begin{center}
To my parents for all the support.
\end{center}}
\vfil\null
\end{dedication}

\input{abstract}

\tableofcontents
\listoffigures
\listoftables
\end{frontmatter}

% \part{First Part}


\input{chapter1} %usually intro
\input{chapter2}
\input{chapter3}
\input{chapter4}
\input{conclusions}



\nocite{*}
% \singlespacing
% \bibliographystyle{alpha}
\bibliographystyle{plain}
\bibliography{bibfile}

\input{appendix}


\end{document}

当我尝试运行它时,出现 2 个错误:!LaTeX 错误:未找到文件“pdfsync.sty”。

输入 X 退出或继续,或输入新名称。(默认扩展名:sty)

!LaTeX 错误:未找到文件“fncylab.sty”。

我尝试将排版更改为 Pdf Sync,但仍然出现这些错误。就这个包而言,CTAN 上的包文档说它与 graphics.sty 相同。我还尝试在运行模板时插入这两个包,但仍然没有帮助。所以,我不确定到底缺少了什么?

提前致谢。

答案1

我下载了 PhD latex 模板 *.zip 文件。然后我将其解压到一个文件夹中。现在使用 TeXmaker(任何 IDE 或操作系统都可以)我运行了 pdflatex 两次,然后查看了它。它编译成功。所以:

1)验证您是否有一个包含以下内容的文件夹:

 Directory of ..\ucthesisPhDTwoChairs
03/11/2009  02:25 PM             6,148 .DS_Store
10/20/2015  02:09 PM                 0 dir.txt
03/10/2009  04:51 PM               362 sw20uctd.sty
03/10/2009  04:51 PM               581 thmsupp.tex
03/12/2009  09:59 AM            47,995 ucr.cls
03/10/2009  04:51 PM            18,341 uct10.clo
03/10/2009  04:51 PM            18,374 uct11.clo
03/10/2009  04:51 PM            18,431 uct12.clo
10/20/2015  02:06 PM             5,634 uctest.tex

2) 验证您的计算机上是否安装了最新且正确更新的 LaTeX 发行版。

然后,当提供的模板不带任何更改地运行时,您现在就可以开始个性化模板。

相关内容