答案1
周围有很多简历模板,但使用标准 LaTeX 命令从头开始创建简历布局也不是很困难。
\documentclass[12pt]{article}
\usepackage[margin=1in]{geometry}
\usepackage{marvosym}
\usepackage{tikz}
\usetikzlibrary{fadings}
\newcommand\heading[3]%
{\begin{tabular}[b]{@{}l@{}}
\sffamily\bfseries\LARGE#1\\
\small\Letter\ \texttt{#2}
\end{tabular}%
\hfill
\includegraphics[height=10ex]{#3}%
\vspace{2ex}%
}
\newcommand\secline
{\tikz\fill[green,path fading=east] (0,0) rectangle (\linewidth,2pt);}
\renewcommand\section[1]%
{\par\bigskip
{\sffamily\bfseries\large#1}\\[-1.5ex]
\secline
\par\bigskip
}
\newcommand\cventry[3]%
{\makebox[5em][l]{#1}\hspace{1em}%
\parbox[t]{\dimexpr\linewidth-6em}%
{\textbf{#2}\quad#3}%
\par\medskip
}
\parindent0pt
\begin{document}
\heading{Some Body, Ph.D.}{[email protected]}{example-image-1x1.png}
\section{Employment History}
\cventry{2014 -- $\cdots$}{Software developer.}{Many hugely successful projects
that I sold to Google. Bla bla bla bla bla bla.}
\cventry{2013 -- 2015}{Waiter.}{Serving tea, coffee, and burgers.}
\end{document}