简历标题(将姓名和项目放在联系人旁边)

简历标题(将姓名和项目放在联系人旁边)

我正在尝试制作如下所示的简历标题: 在此处输入图片描述

这是我目前所拥有的: 在此处输入图片描述

我不知道如何将我的姓名和程序放在我的联系人旁边。我的姓名和程序在不同的行上。我的联系人放在一个表格中(1 列,3 行,文本左对齐)。

我的代码看起来是这样的:

\documentclass[a4paper,12pt]{article}

%======PREAMBLE======================
% Document font - https://ctan.org/tex-archive/fonts/gillius?lang=en
\usepackage{gillius}

% Add clickable links
\usepackage{hyperref}

% Set spacing
\usepackage{setspace}

% Use Font Awesome icons
\usepackage{fontspec}
\usepackage{fontawesome5}
\usepackage{xparse}

%====================================
\onehalfspacing
\begin{document}

% HEADER

% Name & Program
\begin{flushleft}
Anthony Johnson \\*
Electrical Engineering Student at MIT
\end{flushleft}

% Contacts Section
\begin{flushright}
\begin{tabular}{ l } 
 \href{https://github.com/AnthonyJohnson}{\faGithub \hspace{0.25 em} AnthonyJohnson} \\
 \href{mailto:[email protected]}{\faEnvelope \hspace{0.25 em} [email protected]} \\
 \faPhone \hspace{0.25 em} (123) - 456 - 7890 \\
\end{tabular}
\end{flushright}

\end{document}
\end{onehalfspacing}
    

有人能告诉我如何实现这一点吗?谢谢 :)

答案1

你可以使用两个这样的小页面

\documentclass[a4paper,12pt]{article}

%======PREAMBLE======================
% Document font - https://ctan.org/tex-archive/fonts/gillius?lang=en
\usepackage{gillius}

% Set spacing
\usepackage{setspace}

% Use Font Awesome icons
\usepackage{fontspec}
\usepackage{fontawesome5}
\usepackage{xparse}

% Add clickable links
\usepackage{hyperref}

\onehalfspacing
\begin{document}

% HEADER

% Name & Program
\noindent % <===========================================================
\begin{minipage}[c]{0.6\textwidth} % <==================================
\begin{flushleft}
Anthony Johnson \\*
Electrical Engineering Student at MIT
\end{flushleft}
\end{minipage} % <======================================================
\hfill
\begin{minipage}[c]{0.35\textwidth}% <==================================
% Contacts Section
\begin{flushright}
\begin{tabular}{ l } 
 \href{https://github.com/AnthonyJohnson}{\faGithub \hspace{0.25 em} AnthonyJohnson} \\
 \href{mailto:[email protected]}{\faEnvelope \hspace{0.25 em} [email protected]} \\
 \faPhone \hspace{0.25 em} (123) - 456 - 7890 \\
\end{tabular}
\end{flushright}
\end{minipage}% <=======================================================

\end{document}

得到期望的结果:

生成的 pdf

相关内容