在杰克的简历模板中添加“相关课程”部分

在杰克的简历模板中添加“相关课程”部分

我是 Latex 的初学者,正在尝试使用“Jake 的简历”模板创建简历(https://www.overleaf.com/latex/templates/jakes-resume/syzfjbzwjncs)我目前正在尝试在教育部分添加一个“相关课程部分”,其中列出了我所修的与我专业相关的课程:在此处输入图片描述

但发现很难,因为模板使用自定义命令。我认为与教育部分相对应的自定义命令是其中之一:

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

\newcommand{\resumeSubSubheading}[2]{
    \item
    \begin{tabular*}{0.97\textwidth}{l@{\extracolsep{\fill}}r}
      \textit{\small#1} & \textit{\small #2} \\
    \end{tabular*}\vspace{-7pt}
}

但不确定是哪一个,以及如何修改它以包含相关的课程部分。任何帮助都将不胜感激。谢谢!

就像这份简历中提到的那样: 在此处输入图片描述

答案1

这个例子将帮助你入门。

新命令\resumeSubSubheadingLeft将按照您的要求运行。它需要 2 个强制参数,例如:

\resumeSubSubheadingLeft
    {Relevant Coursework}
    {Operating System, Data Structures, Analysis of Algorithms, Artificial Inteligence,  Machine Learning, Networking, Databases, ...}
    

C

把这段代码放在前面\section{Experience}

%-------------------------------------------
%%%%%%  RESUME STARTS HERE  %%%%%%%%%%%%%%%%%%%%%%%%%%%%

\usepackage{calc} % added
\newcommand{\resumeSubSubheadingLeft}[2]{% % added
\begin{description}[leftmargin=!,labelwidth=\widthof{\small\bfseries #1}]
    \item[\small #1]{\textit{\small  #2}}
\end{description}
}

\begin{document}

\begin{center}
    \textbf{\Huge \scshape Jake Ryan} \\ \vspace{1pt}
    \small 123-456-7890 $|$ \href{mailto:[email protected]}{\underline{[email protected]}} $|$ 
    \href{https://linkedin.com/in/...}{\underline{linkedin.com/in/jake}} $|$
    \href{https://github.com/...}{\underline{github.com/jake}}
\end{center}


%-----------EDUCATION-----------
\section{Education}

\resumeSubHeadingListStart
    \resumeSubheading
    {Southwestern University}{Georgetown, TX}
    {Bachelor of Arts in Computer Science, Minor in Business}{Aug. 2018 -- May 2021}
    
    \resumeSubSubheadingLeft% added <<<<<<<<<<<<<<<
    {Relevant Coursework}{Operating System, Data Structures, Analysis of Algorithms, Artificial Inteligence,  Machine Learning, Networking, Databases, ...}
    
\resumeSubHeadingListEnd

%-----------EXPERIENCE----------

    

相关内容