列描述不在 moderncv 的中心吗?

列描述不在 moderncv 的中心吗?

我用我自己的解决方案/解决方法获取我的简历中的证书的表格格式列表。

我不喜欢 \cvline 的描述居中,例如我有以下代码:

\documentclass[11pt,a4paper]{moderncv}
\moderncvtheme[green]{classic}                  
\usepackage[utf8]{inputenc}                  
\usepackage{floatflt}
\usepackage{fancyhdr} 
\usepackage{geometry}
\geometry{a4paper,left=2cm,right=1cm, top=2cm, bottom=1.5cm,headheight=21pt} 
\usepackage{tikz} 
\usepackage{wrapfig}
\usepackage{lipsum} 
\usepackage[english]{babel}
\firstname{C}
\familyname{}
\title{Curriculum vitae}              
\address{}{}  
\photo[128pt]{picture}                        

\begin{document}


\section{certifications}
\cvline{Microsoft}{\begin{tabular}{ l @{\hskip 0.5in} l }
Microsoft SharePoint 2010 & Sep 19, 2011\\
 Microsoft Word 2010 Expert & Sep 14, 2011\\
 Microsoft Access 2010 & Sep 05, 2011\\
Microsoft PowerPoint 2010 & Aug 29, 2011 \\
 Microsoft Excel 2010 Expert & Aug 09, 2011\\
 Microsoft Excel 2010 & Jul 14, 2011\\
&\\
 Microsoft Office Master Specialist & Sep 14, 2011\\
&\\
NAV 2009 Trade \& Inventory & Mar 22, 2012\\
NAV 2009 Manufacturing & Mar 14, 2012\\
NAV 2009 Core Setup and Finance & Mar 08, 2012\\
NAV 2009 Installation \& Configuaration & Oct 04, 2011\\
\end{tabular}
\newline}
\cvline{SAP}{Terp10 SAP ERP}

\end{document}

输出结果如下: t1

但我不喜欢“Microsoft”垂直居中。所以我想让 Microsoft 与第一个 Microsoft 认证处于同一级别。我该怎么做?这样它就与 sharepoint 认证处于同一级别了?

答案1

\cvline{Microsoft}{\begin{tabular}[t]{ l @{\hskip 0.5in} l }
                                  %%%

相关内容