不知道错误是什么

不知道错误是什么
\makecvtitle

\section{Education}
\cventry{2011--2014}{Computer science engineering diploma}{Faculty of sciences-Elmanar}{Tunis}{\textit{}}{}
\cventry{2008--2011}{bachelor degree in sciences and technologies of information and communication}{Faculty of sciences-Elmanar}{Tunis}{\textit{}}{major in electronics and signals transmission with honours }
\cventry{2008}{bachelor}{khemir High school}{Aindrahem}{\textit{}}{major in Maths with honours}

\section{Experience}
\subsection{Vocational}
\cventry{July-August 2013}{Internship}{Ngtrend}{Tunis}{}{building and testing an MMS sending/receiving platform with Mbuni(gateway Open Source) and Nokia mms developer's suite}
\cventry{March 2013}{Realtime Translator}{Nomad, Forum Social Mondial}{Tunis}{}{using raspberry pi cards along with FM transmitters to set realtime translators during the "World Social Forum 2013"}
\cventry{June 2011}{Internship}{Tunisie Telecom}{Tunis}{}{developing a platform to send bulk sms.}
\subsection{Pedagogical}
\cventry{2013--2014}{Quadcopter project}{Tunis}{operating an arduino duemilanove card to build a quadcopter and control it with an android tablet (currently)}
\cventry{April 2013}{databases}{Tunis}{designing and building an appliction to manage students candidacies in our faculty using oracle forms}
\cventry{December 2013}{Embedded linux}{Tunis}{building a linux system on a raspberry pi}

\section{Computer skills}
\cvitem{programming langages}{C,C++,java,JEE,VHDL,Prolog,Assembly,Html,PHP}
\cvitem{IDE}{Netbeans,Altuim Designer,Isis,IAR,Arduino,Xilinx,Matlab,Eclipse,Oracle}
\cvitem{OS's}{Redhat(Fedora),Debian(Ubuntu,Mint),Backtrack,Windows}
\cvitem{Servers}{Tomcat,Apache,Mysql server}
\cvitem{Networks}{LANs,CISCO,signals transmission}

\section{Activities}
\cvitem{IEEE}{active member in IEEE FST student branch 2013}
\cvitem{Microdesign club}{active member in the embedded systems' club Microdesign}
\cvitem{CertifFST}{active member in the certification club CertifFST}
\cvitem{CTunis Extended, Forum Social Mondial}{streaming and enlarging orgnizations'activities during the World Social Forum 2013}
\cvitem{IEEE, RobotComp'2013}{participation in an annual robotics competition organized by IEEE}

\section{Languages}
\cvitem {English}{fluent}
\cvitem {French}{bilingual}
\cvitem {Arabic}{native}
\cvitem {Italian}{Basics}

\nocite{*}
\bibliographystyle{plain}
\bibliography{publications}                        % 'publications' is the name of a BibTeX file

\clearpage

%\clearpage\end{CJK*}                              % if you are typesetting your resume in Chinese using CJK; the \clearpage is required for fancyhdr to work correctly with CJK, though it kills the page numbering by making \lastpage undefined
\end{document}

我收到这个错误

! \cventry 的参数有一个额外的 }.\par \cventry{2013 年 4 月}

和这个

!段落在 \cventry 完成之前结束。\par \cventry{2013 年 4 月}

和这个

!放错了 \cr。 \cr \cventry{2013 年 4 月}

都在同一行!可能是什么错误?

答案1

\cventry命令需要括号参数,并且这一行只有四个

\cventry{2013--2014}{Quadcopter project}{Tunis}{operating an arduino duemilanove card to build a quadcopter and control it with an android tablet (currently)}

我将其重写为在单独的行中放置每个参数,这是合法的语法,并且可能更适合检查参数的确切数量:

\cventry{2013--2014}
  {Quadcopter project}
  {Tunis}
  {operating an arduino duemilanove card to build a quadcopter and control it with an android tablet (currently)}

实际情况是,TeX 需要五个参数,因此它将以下\cventry标记视为第五个参数:chaos ensues。如果第五个参数中没有任何内容,只需指定一对空括号即可。

\cventry{2013--2014}
  {Quadcopter project}
  {Tunis}
  {operating an arduino duemilanove card to build a quadcopter and control it with an android tablet (currently)}
  {}

相关内容