答案1
添加的代码将降低三个符号,使它们与文本对齐。
\raisebox{<distance>}{<content>}
使用负号可降低符号distance
。
% !TeX TS-program = pdflatex
\documentclass[a4paper]{moderncv}
\moderncvstyle{banking}
\moderncvcolor{burgundy}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\name{Emin}{Umut Gerçek}
\phone[mobile]{(1)~234~567~890}
\email{[email protected]}
\social[github]{eugercek}
% ********************************* added <<<<<<<<<<<<<<<<<<<
\newbox{\phantombox}
\sbox{\phantombox}{\small (}
\renewcommand*{\mobilephonesymbol}{\raisebox{-0.5\dp\phantombox}{\small\faMobile*~}}
\renewcommand*{\emailsymbol}{\raisebox{-0.5\dp\phantombox}{\small\faEnvelope[regular]~}}
\renewcommand*{\githubsocialsymbol}{\raisebox{-0.5\dp\phantombox}{\small\faGithub~}}
%**********************************************
\begin{document}
\makecvtitle
\end{document}
可以使用以下方法调整任何符号的垂直位置:
\renewcommand*{\mobilephonesymbol}{\raisebox{-0.3\dp\phantombox}{\small\faMobile*~}}
将会把符号电话向上移动一点来补偿更高的数字。