如何解决额外的对齐选项卡已更改为/cr

如何解决额外的对齐选项卡已更改为/cr

我想用 LaTeX 模板 ( ) 制作简历europecv,但遇到了一些问题。我将其他技能和能力更改为其他技能和证书,但当我在其中输入证书时,结果如下:

\documentclass[helvetica,openbib,logo,notitle,flagCMYK,totpages]{europecv}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage[a4paper,top=1.27cm,left=1cm,right=1cm,bottom=2cm]{geometry}
\usepackage[english]{babel}
\usepackage{url}


\ecvname{Blah, Blah}
\ecvfootername{Blah Blah}
\ecvaddress{ a street, M alley, USA}
\ecvtelephone{041-1234567}
%\ecvfax{12345678}
\ecvemail{\url{[email protected]}}
\ecvnationality{American}
\ecvdateofbirth{apr 11 1998}
\ecvgender{Female}
%\ecvpicture[width=2cm]{lion.png}
\ecvfootnote{For more information call me please}



\ecvitem[10pt]{\large Other skills and certificate}{Risk Management Course Certified by: Tehran University, registered by IIIE, Nov 2007 ;\\
    Quality Management System Internal Audit based on ISO 9001:2000 QMS, ISO19011:2002-certified by: TUV ACADEMY RHEINLAND, May 2008 ;\\&
    Fundamental Concepts & Criterion Parts of EFQM Excellent Model, Certified by: KQR/ISC Jun 2010 ;\\&
    PRIMAVERA PROJECT PLANER: Certified BY: Technical and Vocational Training Organization, Feb 2010 ;\\&
    Internal Audit of Integrated Management System (IMS) Based on ISO 9001:2008 & ISO 14001:2004 & OHSAS 18001:2007, Certified by: TUV NORD, Oct 2012.}

我收到此错误:

extra alignment tab has been changed to /cr.

我该如何解决?

答案1

您的代码中存在多处错误。请查看更正后的代码:

\ecvitem[10pt]{\large Other skills and certificate}%
  {Risk Management Course Certified by: Tehran University, registered by IIIE, Nov 2007; %\\ <======
  Quality Management System Internal Audit based on ISO 9001:2000 QMS,
  ISO19011:2002-certified by: TUV ACADEMY RHEINLAND, May 2008; %\\& <==============================
  Fundamental Concepts \& Criterion Parts of EFQM Excellent Model, % <======================
  Certified by: KQR/ISC Jun 2010; %\\& <==============================================
  PRIMAVERA PROJECT PLANER: Certified BY: Technical and Vocational 
  Training Organization, Feb 2010; %\\& <=============================================
  Internal Audit of Integrated Management System (IMS) Based on 
  ISO 9001:2008 \& ISO 14001:2004 \& OHSAS 18001:2007, Certified by: TUV NORD, Oct 2012.}

\\&在命令中不允许使用所使用的类\ecvitem。我已将它们注释掉或用 屏蔽&\&将其打印出来。

通过这些更改,您的代码将使用以下 MWE 进行编译

\documentclass[helvetica,openbib,totpages]{europecv}% europecv2013 europecv
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage[a4paper,top=1.27cm,left=1cm,right=1cm,bottom=2cm]{geometry}
\usepackage[english]{babel}
\usepackage{bibentry}
\usepackage{url}

\ecvname{Surname, Name}
\ecvfootername{Name Surname}
\ecvaddress{House number, street name, postcode, city, country}
\ecvtelephone[(Remove if not relevant)]{(Remove if not relevant)}
\ecvfax{(Remove if not relevant)}
\ecvemail{\url{[email protected]} (Remove if not relevant)}
\ecvnationality{(Remove if not relevant)}
\ecvdateofbirth{(Remove if not relevant)}
\ecvgender{(Remove if not relevant)}
\ecvpicture[width=2cm]{example-image}
\ecvfootnote{} % 


\begin{document}
\selectlanguage{english}

\begin{europecv}
\ecvpersonalinfo[5pt]
\ecvitem{\large\textbf{Desired employment/ Occupational~field}}{\large\textbf{(Remove if not relevant)}}

\ecvsection{Work experience}
\ecvitem{Dates}{Add separate entries for each relevant post occupied, starting from the most recent. (Remove if not relevant).}
\ecvitem{Occupation or position held}{\ldots}
\ecvitem{Main activities and responsibilities}{\ldots}
\ecvitem{Name and address of employer}{\ldots}
\ecvitem{Type of business or sector}{\ldots}

\ecvitem[10pt]{\large Other skills and certificate}%
  {Risk Management Course Certified by: Tehran University, registered by IIIE, Nov 2007; %\\ <======
  Quality Management System Internal Audit based on ISO 9001:2000 QMS,
  ISO19011:2002-certified by: TUV ACADEMY RHEINLAND, May 2008; %\\& <==============================
  Fundamental Concepts \& Criterion Parts of EFQM Excellent Model, % <======================
  Certified by: KQR/ISC Jun 2010; %\\& <==============================================
  PRIMAVERA PROJECT PLANER: Certified BY: Technical and Vocational 
  Training Organization, Feb 2010; %\\& <=============================================
  Internal Audit of Integrated Management System (IMS) Based on 
  ISO 9001:2008 \& ISO 14001:2004 \& OHSAS 18001:2007, Certified by: TUV NORD, Oct 2012.}
\end{europecv}

\end{document} 

到结果页面:

结果页面

相关内容