moderncv
我正在以优雅和时尚的方式撰写我的简历classic
。
当我写下我的推荐人的联系方式,例如电子邮件地址时,是否可以点击该电子邮件地址,就像\email
我使用的自己的电子邮件地址一样。
答案1
你没有给出 MWE,所以我只能猜测一下。
我认为您误解了该命令\email
仅用于您自己的电子邮件地址。如果您想添加其他人的电子邮件,只需使用命令。它链接到有效链接,但仅显示打印。\href{mailto:[email protected]}{[email protected]}
mailto:[email protected]
[email protected]
使用以下 MWE
\documentclass[11pt,a4paper,sans]{moderncv}
% moderncv themes
\moderncvstyle{classic} % casual, classic, banking, oldstyle and fancy
\moderncvcolor{blue}
\usepackage[utf8]{inputenc}
\usepackage[scale=0.75]{geometry}
% personal data
\name{John}{Doe}
\title{Resumé title}
\address{street and number}{postcode city}{country}
\phone[mobile]{+1~(234)~567~890}
\phone[fixed]{+2~(345)~678~901}
\phone[fax]{+3~(456)~789~012}
\email{[email protected]} % <======================================
\homepage{www.johndoe.com}
\social[linkedin]{john.doe}
\social[twitter]{jdoe}
\social[github]{jdoe}
\extrainfo{additional information}
\photo[64pt][0.4pt]{example-image-a}
\quote{Some quote}
\begin{document}
\makecvtitle
\section{Education}
\cventry{year--year}{Degree}{Institution--3}{City--4}{\textit{Grade}--5}{Description--6} % arguments 3 to 6 can be left empty
\cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description}
\section{Master thesis}
\cvitem{title}{\emph{Title}}
\cvitem{supervisors}{Supervisors}
\cvitem{description}{Short thesis abstract}
\section{References}
\cvlistitem{Max Mustermann,
\href{mailto:[email protected]}{[email protected]}} % <==================
\cvlistitem{Eva Musterfrau,
\href{mailto:[email protected]}{[email protected]}} % <=================
\end{document}
得到结果: