Como posso centralizar duas colunas horizontalmente?

Como posso centralizar duas colunas horizontalmente?

Isso é o que tenho atualmente:

insira a descrição da imagem aqui

\documentclass{article}

\usepackage[margin=1.0in]{geometry}
\usepackage[scaled]{helvet}
\renewcommand\familydefault{\sfdefault} 
\usepackage{multicol}

\begin{document}

\begin{multicols}{2}
    \begin{itemize}
    \begin{flushright}
        \huge\textbf{First Last}
    \end{flushright}
    \end{itemize} 
    \columnbreak
    
    \renewcommand{\arraystretch}{0.7}
    \begin{tabular}{rl}
         \footnotesize \textbf{Email} & \footnotesize \href{mailto:[email protected]} \\ 
         \footnotesize \textbf{Website} & \footnotesize Website \\  
         \footnotesize \textbf {LinkedIn} & \footnotesize https://linkedin.com/  \\  
         \footnotesize \textbf {Phone} & \footnotesize ()
    \end{tabular}
\end{multicols}

\end{document}

E é isso que eu gostaria de ter em termos de posicionamento (não quero necessariamente aumentar o tamanho da fonte de "Primeiro Último"): insira a descrição da imagem aqui

Resumindo, procuro equilibrar horizontalmente a coluna de nome e a coluna de links à direita do nome. Como posso replicar o layout da imagem anexada?

Responder1

Eu provavelmente usaria algum tipo de ambiente tabular, ou para fornecer um pouco mais de poder e flexibilidade, algo dopacote tabularray, assim:

\documentclass{article}
\usepackage[margin=0.6in]{geometry} % set margins
\usepackage[T1]{fontenc}
\usepackage{tgheros}% font like in picture
\renewcommand{\familydefault}{\sfdefault} % use sans font
\usepackage{tabularray}% for fancier tables
\usepackage[colorlinks,urlcolor=black]{hyperref}% for urls
\renewcommand{\UrlFont}{\color{black}}% remove ttshape from urls
\begin{document}

\begin{center}
% tblr with three columns, one left and vertically-middle assigned,
% one bold right aligned, one left aligned
\noindent\begin{tblr}{colspec={Q[l,m]>{\bfseries}rl},
    vborder{2} = {leftspace=5em},% extra space before second column break
    vborder{3} = {leftspace=1em} % extra space before third column
}
\SetCell[r=4]{c}{\fontsize{60}{60}\selectfont \textbf{First Last}} 
          & Email    & \href{mailto:[email protected]}{[email protected]}\\
          & Website  & \url{https://example.com/}\\
          & LinkedIn & \url{https://linkedin.com/in/test}\\
          & Github   & \url{https://github.com/test}
\end{tblr}
\end{center}

\end{document}

cabeçalho cv

informação relacionada