moderncv:在页面左上角插入大学徽标

moderncv:在页面左上角插入大学徽标

我正在使用cvtheme文档类和\moderncv{classic}创建简历。该命令\photo会将一张照片放在页面的右上方。同时,我想在左上方插入我所在大学的徽标。也就是说,在页面的顶部,左侧是徽标,中间是我的名字,右侧是我的照片。

我该如何修改模板来实现这一点?谢谢。

在下面的例子中,我想要:

1 我的照片在页面的右上角,我想在左上角“申请工作”上方添加我所在大学的徽标。

2 我想要在我的地址前面显示一个图标,就像电话和电子邮件一样。

3 如何更改地址、电话和电子邮件的顺序?我希望地址显示在最后一行。

非常感谢。

\documentclass[10pt,a4paper]{moderncv}
\moderncvtheme[black]{classic} 
\usepackage[utf8]{inputenc}    
\usepackage[top=0.2in, bottom=0.2in, lmargin=0.3in, right=0.3in]{geometry} 
\setlength{\hintscolumnwidth}{2.5cm} 
\AtBeginDocument{\recomputelengths}     
\firstname{\Huge \qquad\qquad\qquad\qquad John}
\familyname{\Huge David}
\title{\normalsize{Apply for a job}}
\address{123 Abc Ave. Bethlehem, PA 18015}
\mobile{484--0000--0000}        
\email{[email protected]} 
\extrainfo{\color{black}Male, Oct. 1991} 
\photo[64pt]{myPhoto.jpg}
\nopagenumbers{}    

\begin{document}
\maketitle
\section{Education}
\end{document} 

在此处输入图片描述

答案1

一个快速的解决方法可能是以下 MWE:

\documentclass[10pt,a4paper]{moderncv}
\moderncvtheme[black]{classic} 
\usepackage[utf8]{inputenc}    
\usepackage[top=0.2in, bottom=0.2in, lmargin=0.3in, right=0.3in]{geometry} 
\setlength{\hintscolumnwidth}{2.5cm} 
\AtBeginDocument{\recomputelengths}     
\firstname{\includegraphics[width=2cm]{example-image-b}\Huge \qquad\qquad John}
\familyname{\Huge David}
\title{\normalsize{Apply for a job}}
\address{123 Abc Ave. Bethlehem, PA 18015}
\mobile{484--0000--0000}        
\email{[email protected]} 
\extrainfo{\color{black}Male, Oct. 1991} 
\photo[64pt]{example-image-a.jpg}
\nopagenumbers{}    

\begin{document}
\maketitle
\section{Education}
\end{document} 

您可以看到,我只\includegraphics向命令添加了命令\firstname

\firstname{\includegraphics[width=2cm]{example-image-b}\Huge \qquad\qquad John}

我使用了包中的示例图像MWE(您不需要调用它,但您必须将其安装在您的计算机上)。

你确定要在你的简历顶部放一所大学的标志吗?这是你的简历,不是你工作的大学或研究所的简历...

MWE 的结果:

MWE 结果

相关内容