I have my university thesis template but having trouble running it. I'm running it using TexShop in my Mac(OS X). Here's the template:
\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}
When I try running it, I get 2 errors: ! LaTeX Error: File `pdfsync.sty' not found.
Type X to quit or to proceed, or enter new name. (Default extension: sty)
! LaTeX Error: File `fncylab.sty' not found.
I tried changing the typesetting to Pdf Sync but still get these errors. As far as this package is concerned, the package documentation on CTAN says that it is the same as the graphics.sty. I also tried inserting these 2 packages while running the template but still doesn't help. So, I'm not sure what is actually missing?
Thanks in advance.