在 moderncv 经典布局中使用 moderncv 休闲图标

在 moderncv 经典布局中使用 moderncv 休闲图标

我正在使用 LaTeX 重写我的简历,moderncv我更喜欢样式中的电话/社交图标的外观,casual但更喜欢样式的布局classic。我如何使用样式casual中的图标classic

答案1

casual类的样式moderncv使用命令\moderncvicons{awesome}用字体加载您喜欢的符号fontawesomeclassic您喜欢的样式使用命令\moderncvicons{marvosym}

因此只需\moderncvicons{awesome}在序言中添加命令呼唤风格classic

请参阅以下 MWE

\documentclass[11pt,a4paper,sans]{moderncv}

\moderncvstyle{classic} % casual, classic, banking, oldstyle and fancy
\moderncvcolor{blue} 

\moderncvicons{awesome} % <============== to get symbols of style casual
\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-golden-upright}%
\quote{Some quote}

\setlength{\footskip}{66pt}


\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}

\end{document}

及其结果

生成的 PDF 带有超棒的字体

相关内容