在简历中列出多个学位

在简历中列出多个学位

我正在使用这个模板制作我的简历,我想列出多个学士学位。

https://www.overleaf.com/latex/templates/jakes-resume/syzfjbzwjncs

\resumeSubheading
  {University of Maryland, College Park}{College Park, MD}
  {Bachelor of Science Degrees in Mathematics}{Aug. 2015-- May 2019}   
  {Bachelor of Science Degrees in Computer Science}{Aug. 2015-- May 2019}   

但每次我列出我的学位时,文本都会相互重叠。我尝试过\vspace{1mm}但没有成功。

答案1

从模板本身来看,没有直接的方法可以做到这一点,因为命令resumeSubHeading只接受 4 个参数并将它们放在表中。

makecell您可以通过将包添加到序言中并按以下方式输入您的学位来实现您想要的:

\resumeSubheading
  {University of Maryland, College Park}{College Park, MD}
  {\makecell{Bachelor of Science Degrees in Mathematics\\   
    Bachelor of Science Degrees in Computer Science}}
  {\makecell{Aug. 2015-- May 2019\\
    Aug. 2015-- May 2019}}

答案2

这是旧的,但我遇到了同样的问题,所以我想发布我的解决方案。您还可以添加修改后的版本,resumeSubHeading如下所示:

\newcommand{\resumeSubheadingTwo}[6]{
  \vspace{-2pt}\item
    \begin{tabular*}{0.97\textwidth}[t]{l@{\extracolsep{\fill}}r}
      \textbf{#1} & #2 \\
      \textit{\small#3} & \textit{\small #4} \\
      \textit{\small#5} & \textit{\small #6} \\
    \end{tabular*}\vspace{-7pt}
}

然后您可以像下面这样定义标题:

\resumeSubheadingTwo
  {University of Maryland, College Park}{College Park, MD}
  {Bachelor of Science Degrees in Mathematics}{Aug. 2015-- May 2019}   
  {Bachelor of Science Degrees in Computer Science}{Aug. 2015-- May 2019}

相关内容