如何删除 Europass 简历中的脚注

如何删除 Europass 简历中的脚注

我已经看到这notitle有助于删除 Europass CV 中的标题,但不确定如何在 Europass CV 中删除它。有什么帮助吗?

必须删除以下链接

答案1

嗯,您没有告诉我们您使用的是哪个版本的欧洲通票(europecv2013或更旧的版本europecv)。

他们都知道一个命令,\ecvfootnote你可以用你想要的文本填充

\ecvfootnote{For more information go to       % <=======================
  \url{http://europass.cedefop.eu.int}\\
  \textcopyright~European Communities, 2003.} % <=======================

或者干脆留空:

\ecvfootnote{} % <======================= 

使用以下 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}

\ecvsection{Education and training}

\ecvitem{Dates}{Add separate entries for each relevant course you have completed, starting from the most recent. (Remove if not relevant).}
\ecvitem{Title of qualification awarded}{\ldots}
\ecvitem{Principal subjects/Occupational skills covered}{\ldots}
\ecvitem{Name and type of organization providing education and training}{\ldots}
\ecvitem{Level in national or international classification\footnote{If appropriate.}}{\ldots}

\ecvsection{Personal skills and~competences}

\ecvmothertongue[5pt]{Specify mother tongue}
\ecvitem{\large Other language(s)}{}
%\ecvlanguageheader{(*)}
\ecvlanguage{English}{1}{2}{3}{4}{5}
\ecvlanguage{Deutsch}{\ecvCTwo}{\ecvCOne}{\ecvBTwo}{\ecvBOne}{\ecvATwo}
\ecvlanguage{Language}{}{}{}{}{}
%\ecvlanguagefooter[10pt]{(*)}

\ecvitem[10pt]{Language(s) certificates}{}
\ecvitem[10pt]{\textbf{English}}{Blafasel, Total score: 333, date: 2015-10-21}

\ecvitem[10pt]{\large Social skills and competences}{Replace this text by a description of these competences and indicate where they were acquired (remove if not relevant).}
\ecvitem[10pt]{\large Organisational skills and competences}{Replace this text by a description of these competences and indicate where they were acquired (remove if not relevant).}
\ecvitem[10pt]{\large Technical skills and competences}{Replace this text by a description of these competences and indicate where they were acquired (remove if not relevant).}
\ecvitem[10pt]{\large Computer skills and competences}{Replace this text by a description of these competences and indicate where they were acquired (remove if not relevant).}
\ecvitem[10pt]{\large Artistic skills and competences}{Replace this text by a description of these competences and indicate where they were acquired (remove if not relevant).}
\ecvitem[10pt]{\large Other skills and competences}{Replace this text by a description of these competences and indicate where they were acquired (remove if not relevant).}
\ecvitem{\large Driving licence(s)}{State here whether you hold a driving licence and if so for which categories of vehicle. (Remove if not relevant).}

\ecvsection{Additional information}
\ecvitem[10pt]{}{Include here any other information that may be relevant, for example contact persons, references, etc. (Remove heading if not relevant).}
\bibliographystyle{plain}
\nobibliography{publications}
\ecvitem{}{\textbf{Publications}}
\ecvitem{}{\bibentry{pub1}}
\ecvitem[10pt]{}{\bibentry{pub2}}
\ecvitem{}{\textbf{Personal interests}}
\ecvitem{}{\ldots}

\ecvsection{Annexes}
\ecvitem{}{List any item attached to the CV}
\end{europecv}

\end{document} 

你得到了想要的结果:

希望的结果

相关内容