我如何才能使简历呈现出这样的风格?

我如何才能使简历呈现出这样的风格?

我正在尝试复制此简历样式(如下)。我知道如何实现它,但我不知道如何实现:

  • 在文本下方添加下划线
  • 在同一行左右书写文本

如果有人可以推荐任何类似于这种外观的包或模板,我将不胜感激。

在此处输入图片描述

答案1

不需要任何包。

\documentclass{article}
\usepackage[margin=1in]{geometry}
\usepackage[T1]{fontenc}
\begin{document}
\noindent\textbf{\huge Jose Javier Gonzalez Ortiz}\hfill {\huge Curriculum Vitae}\vskip5pt
\hrule width \linewidth height 2pt\vskip10pt

\noindent Massachusetts Institute of Technology, \hfill josejg.com

\noindent Computer Science and Artificial Intelligence Laboratory\hfill [email protected]\vskip10pt

\noindent\textbf{\textsc{\Large Education}}\vskip5pt
\hrule width \linewidth height 1pt\vskip10pt

\noindent\textbf{Massachusetts Institute of Technology}\hfill 2019-2023 (Expected)

Ph.D. Electrical Engineering and Computer Science

Advisor: John Guttag\vskip10pt 

\noindent\textbf{Massachusetts Institute of Technology}\hfill 2017-2019

M.Sc. Electrical Engineering and Computer Science (GPA: 5.00/5.00) 

Thesis: Learning from Few Subjects with Large Amounts of Voice Monitoring Data

Courses: Machine Learning, Computer Vision, Distributed Systems, Computer Systems Security\vskip10pt 

\noindent\textbf{Universidad Pontificia Comillas}\hfill 2012-2016 

B.Sc. Telematics Engineering, (GPA: 9.95/10.00, Summa Cum Laude)

Thesis: A Simple Power Analysis Attack on the TwoFish Key Schedule\vskip10pt 

\noindent\textbf{University of Michigan, Ann Arbor}\hfill 2015-2016 

Exchange program in Computer Science (GPA: 3.94/4.00) 

Key Courses: Cryptography, Parallel Computing, Entrepreneurship, Information Retrieval\vskip10pt

\noindent\textbf{\textsc{\Large Research AND Work Experience}}\vskip5pt
\hrule width \linewidth height 1pt\vskip10pt

\noindent\textbf{Facebook AI Research, Montreal}, Research Intern\hfill 2020 

\begin{itemize}
\item Led a project analyzing distributed training of DNNs, with an emphasis on improving generalization performance \& reducing communication.
\item Carried out experiments to identify the synchronization trade-off when training networks in a data parallel
\end{itemize}

\noindent\textbf{CERN Openlab, Geneva}, Software Engineering Intern\hfill 2017 

\begin{itemize}
\item Developed C$++$ software to store and access genomic data using ROOT big data framework. 
\item Benchmarked the tools using Python and performed statistical analysis over the parameter space, improving read speed by over 15 times.
\end{itemize}
\end{document}

在此处输入图片描述

相关内容