页面布局和边距

页面布局和边距

我的简历现在是左边的图片,但是我该如何将我的名字上移,并使下图左边的简历的格式(页面结构等)像下图右边的简历一样呢?

我的乳胶代码(左图是我的简历)如下。

在此处输入图片描述

\documentclass[10pt]{article}
\usepackage{array, xcolor, lipsum, bibentry}
\usepackage[margin=3cm]{geometry}

\title{\bfseries\Huge John Doe}
\author{}
\date{}

\definecolor{lightgray}{gray}{0.8}
\newcolumntype{L}{>{\raggedleft}p{0.14\textwidth}}
\newcolumntype{R}{p{0.8\textwidth}}
\newcommand\VRule{\color{lightgray}\vrule width 0.5pt}


\begin{document}
\maketitle
\vspace{1em}
\begin{minipage}[ht]{0.48\textwidth}
Address Line 1\\
Address Line 2\\
Address Line 3\\
Address Line 4\\
Address Line 5
\end{minipage}
\begin{minipage}[ht]{0.48\textwidth}
Mobile: 123-456789\\
Email: [email protected]\\
Date of Birth: 01/01/2012\\
Citizenship: My citizenship
\end{minipage}
\vspace{20pt}

\section*{Education}
\begin{tabular}{L!{\VRule}R}
2008--2012&MSc in Computer Science, Great University, Country.\vspace{5pt}\\
2006--2008&BSc in Life Science, Great University, Country.\\
\end{tabular}

\section*{Employment}
\begin{tabular}{L!{\VRule}R}
2011--today&{\bf Company Name.} Head of Department. Add my job description here. Add my job description here. Add my job description here. Add my job description here.\\
&\begin{itemize}
\item Add my job description here.
\item Add my job description here.Add my job description here.Add my job description here.
\item Add my job description here.Add my job description here.Add my job description here.Add my job description here.
\item Add my job description here.Add my job description here.Add my job description here.Add my job description here.Add my job description here.Add my job description here.Add my job description here.Add my job description here.Add my job description here.
\end{itemize} 
\end{tabular}

\section*{Awards and Achievements}
\begin{tabular}{L!{\VRule}R}
2008&Gold medal.\vspace{5pt}\\
2006&Silver medal.\\
\end{tabular}

\section*{Organisational Experience}
\begin{tabular}{L!{\VRule}R}
2008&This event.\vspace{5pt}\\
\end{tabular}


\section*{Languages}
English, Spanish, French, German


\end{document} 

答案1

正如其他人指出的那样,请查看诸如moderncv其他人组织简历的方法之类的软件包。在下面的代码中,我尝试通过遵循这些“规则”来近似于人们所追求的外观

  • 仅使用两列
  • 使用标准化的列宽(例如 1.75cm 和“剩余可用文本宽度”)
  • 任何地方的第一行都不需要缩进(\parindent始终设置为 0pt,并抑制环境最左侧列的材料缩进tabular[*x]
  • 使用比 Computer Modern 稍微“暗”一点的字体。我建议你先使用Palatino(由mathpazo软件包提供)然后继续使用。不要使用 Times Roman,除非你想让简历看起来非常平淡

    \documentclass[10pt]{article}
    \usepackage[margin=3cm]{geometry}
    \usepackage{tabularx}
    \newcolumntype{P}{p{1.75cm}}
    \usepackage{url}
    \urlstyle{same}
    \setlength\parindent{0pt}
    \usepackage{mathpazo}
    \begin{document}
    {\centering 
    \bfseries\Huge John Doe        
    }
    
    \vspace{1cm}
    \begin{tabular*}{\textwidth}{@{}l@{\extracolsep{\fill}}l@{}}
    Address Line 1 & Mobile: 123-456789\\
    Address Line 2 & Email: [email protected]\\
    Address Line 3 & Date of Birth: 01/01/2012\\
    Address Line 4 & Citizenship: My citizenship\\
    Address Line 5 & Website: \url{some.verylongnamegoeshere.net}
    \end{tabular*}
    
    \section*{Education}
    \begin{tabularx}{\textwidth}{@{}PX@{}}
    2008--2012&MSc in Computer Science, Great University, Country\\[5pt]
    2006--2008&BSc in Life Science, Great University, Country.
    \end{tabularx}
    
    \section*{Employment}
    \begin{tabularx}{\textwidth}{@{}PX@{}}
    2011--today&\textbf{Company Name.} Head of Department. Add my job description here. Add my job description here. Add my job description here. Add my job description here.\\
    &\begin{itemize}
    \item Add my job description here.
    \item Add my job description here.Add my job description here.Add my job description here.
    \item Add my job description here.Add my job description here.Add my job description here.Add my job description here.
    \item Add my job description here.Add my job description here.Add my job description here.Add my job description here.Add my job description here.Add my job description here.Add my job description here.Add my job description here.Add my job description here.
    \end{itemize} 
    

    \结束{tabularx}

    \section*{Awards and Achievements}
    \begin{tabularx}{\textwidth}{@{}PX@{}}
    2008&Gold medal.\\[5pt]
    2006&Silver medal.
    \end{tabularx}
    
    \section*{Organisational Experience}
    \begin{tabularx}{\textwidth}{@{}PX@{}}
    2008&This event.\vspace{5pt}
    \end{tabularx}
    
    \section*{Languages}
    English, Spanish, French, German
    \end{document} 
    

在此处输入图片描述

相关内容