如何格式化简历表格?

如何格式化简历表格?

请找到预期的输出蓝图

在此处输入图片描述

另外,我们如何改变图像的宽度和高度?

在此处输入图片描述

如果我们希望它在 A4 纸上的尺寸为 3.5 厘米 x 4.3 厘米。可以吗?

以及下面的 MVE:

% LaTeX file for resume 
% This file uses the resume document class (res.cls)

\documentclass{res} 
%\usepackage{helvetica} % uses helvetica postscript font (download helvetica.sty)
%\usepackage{newcent}   % uses new century schoolbook postscript font 
\setlength{\textheight}{9.5in} % increase text height to fit on 1-page 
\usepackage{graphicx}
%for floating figures
\usepackage{wrapfig}
\usepackage{float}
\begin{document} 

\sffamily%
{\small\begin{tabular}[c]{l}
  123 Spruce St, Apt 35 \\
  Philadelphia PA 19103
\end{tabular}}\hfill%
{\Large\bfseries\begin{tabular}[c]{c}
  GAYLE LAAKMANN
\end{tabular}}\hfill%
{\small\begin{tabular}[c]{r}
  (555) 555-1212 \\
  [email protected]
\end{tabular}}%



\quad\parbox{8cm}{
\begin{itemize}
    \item Age:          &     30                 Nationality: CO
    \item Marital status: Single      &      Github: \href{https://github.com/in/xyz/}{github}
    \item Linkedin:         \href{https://linkedin.com/in/xyz/}{linkedIn} & Skype: xyz
\end{itemize}
}
\hfill
\quad\parbox{4cm}{
\hspace{0.75\linewidth}\includegraphics[width=1.0\linewidth]{download.jpg}
}                                  
\begin{resume}         

\end{resume}

相关内容