如何在简历 latex 文件中添加联系信息?

如何在简历 latex 文件中添加联系信息?

我正在使用 {res} 文档类在 latex 中制作简历。我想在简历部分开始之前添加我的联系信息,但现在它将其作为简历部分的一部分插入。有人知道我该怎么做吗?

\documentclass[margin,line]{res}

\begin{document}
\name{\LARGE\textbf{NAME} \vspace*{.1in}}

\begin{resume}

% Contact Information
\begin{flushleft}
    \textit{Contact Information:} \\
    Address: 123 Street, City, Country \\
    Phone: (123) 456-7890 \\
    Email: [email protected]
\end{flushleft}

%   EDUCATION SECTION

\section{Education}
\textbf{University of Groningen}, Groningen
\vspace{0.2cm} \\ % SPACE
{\sl MSc}, Finance (2023 - 2024) \hfill Grade: 8.6
\vspace{0.1cm} \\ % SPACE
{\sl BSc}, Business Administration (2019 - 2022) \hfill Grade: 8.2

答案1

\documentclass[margin,line]{res}

\begin{document}
\name{\LARGE\textbf{NAME} \vspace*{.1in}}

\begin{resume}

% Contact Information
\addvspace{1.5ex}
\moveleft\hoffset\vbox{
\textit{Contact Information:}      \\
Address: 123 Street, City, Country \\
Phone: (123) 456-7890              \\
Email: [email protected]
}
\nointerlineskip
\addvspace{1.5ex}
\moveleft\hoffset\vbox{\hrule width\resumewidth}
%   EDUCATION SECTION

\section{Education}
\textbf{University of Groningen}, Groningen
\vspace{0.2cm} \\ % SPACE
{\sl MSc}, Finance (2023 - 2024) \hfill Grade: 8.6
\vspace{0.1cm} \\ % SPACE
{\sl BSc}, Business Administration (2019 - 2022) \hfill Grade: 8.2

\end{resume}
\end{document}

在此处输入图片描述

相关内容