Moderncv - 居中名称和信息

Moderncv - 居中名称和信息

我正在用它moderncv来写我的简历,但现在,姓名位于页面的左上角,而信息(年龄、地址、电子邮件等...)位于右上角。

可以将名称和信息对齐到页面的顶部中间吗?我想要这样的内容:

  • 全名
  • 地址
  • 电话号码
  • 电子邮件

(居中)。

如果您可以向我解释如何操作(我不知道如何使用'\renewcommand')。

答案1

在撰写本文时,目前有5moderncv个默认主题(casual、、、和)。classicbankingoldstylefancy

在这 5 个默认主题中,banking只有主题将标题/页眉信息放在页面的顶部中央,就像您希望的那样:

enter image description here

要使用这个主题,您只需要\moderncvstyle{banking}在序言中声明即可。

以下 MWE 生成上面屏幕截图中的文档:

\documentclass{moderncv}

\moderncvstyle{banking}

\usepackage[scale=0.75]{geometry}

\name{John}{Doe}
\title{Resumé title}
\address{street and number}{postcode city}{country}
\phone{+3~(456)~789~012}
\email{[email protected]}

\begin{document}

\makecvtitle

\section{Education}
\cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description}
\cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description}

\end{document}

虽然可以自定义moderncv,但是如果您不满意banking,最终可能更容易构建自己的模板。

相关内容