如何在 moderncv 中添加 7 行地址?

如何在 moderncv 中添加 7 行地址?

我需要在 moderncvv 中输入 7 行地址。我使用的是经典风格。

答案1

使用\Longstackstackengine包裹)作为地址。

已针对classicOP 最初要求的样式进行编辑。在我的 MWE 中,我将堆栈右对齐。我不得不手动使用 来设置行间距\setstackgap{L}{},因为样式重新定义了\baselineskip

\documentclass[a4paper]{moderncv}
\moderncvstyle{classic}
\moderncvcolor{blue}
\usepackage{geometry}

\firstname{\textsc{J}} % Your first name
\familyname{\textsc{D}} % Your last name


\usepackage[usestackEOL]{stackengine}
\setstackgap{L}{12pt}
\address{%
  \Longstack[r]{John Doe\\Professor of Engineering\\ 
                University of Anonymous\\ M.E. Dept.\\
                Building 893\\ Mail Stop 8354\\ Anytown, AK}}{USA}
\mobile{(+00 000) 0000}
\phone{(+00 00) 0000}
\fax{(000) 111 1113}
\email{[email protected]}
\begin{document}
\makecvtitle
\end{document}

在此处输入图片描述

相关内容