I took the liberty to modify your code, here is a compilable example.
Code: Select all
\documentclass[11pt,a4paper,sans]{moderncv}
\moderncvstyle{casual}
\moderncvcolor{blue}
% adjust the page margins
\usepackage[scale=0.75]{geometry}
\firstname{John}
\familyname{Smith}
\title{Professor}
\address{University}{Department of city, state, zip}
\phone{}
\email{smith@}
%{{{1 Colors, title, etc.
\definecolor{titlecolor}{gray}{0.05}
\definecolor{addresscolor}{gray}{0.05}
\definecolor{sectionrectanglecolor}{gray}{0.85}
\definecolor{sectiontitlecolor}{gray}{0.0}
\definecolor{subsectioncolor}{gray}{0.0}
\begin{document}
\makecvtitle
\section{EDUCATION:}
\cventry{1973}{High school studies}{}{}{}{}
\cventry{July 1980}{MS}{University}{}{}{}
\cventry{August 1985}{Doctor of Philosophy}{Unin}{}{}{}
\section{ LANGUAGES SPOKEN FLUENTLY:}
\cvlanguage{ English, French}{}{}
\section{HONOURS AND AWARDS:}
\cventry{}{Fullbright Fellowship}{}{}{}{}
\section{POSITIONS:}
\cventry{1980--81}{Teaching Assistant}{University of }{}{}{}
\cventry{1981--85}{Teaching Assistant}{University of }{}{}{}
\cventry{1985--86}{Professor}{University }{}{}{}
\end{document}
Sadly there is no documentation for the package moderncv, but here a few things I notice about your code
First the newline
\\
had to be remove in the address.
Second,
\cventry
take 6 arguemnts. Arguments 3 to 6 can be left empty, but the braces are needed.
Code: Select all
\cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description}
Finaly, there is other commands, the list is not complete
Code: Select all
\cvitem{supervisors}{Supervisors}
\cvitemwithcomment{Language 1}{Skill level}{Comment}
\cvlanguage{french}{written and spoken}{}
Have a look at template.tex from
http://www.ctan.org/tex-archive/macros/ ... v/examples
This is a complete example that show a lot of options.
I hope it help
Alain Rémillard