将文本从左侧移到中间,并将徽标放在左侧以与简历标题中的文本对齐

将文本从左侧移到中间,并将徽标放在左侧以与简历标题中的文本对齐

在下面的代码中,我想将文本从左侧移到中间,并在左侧放置一个徽标。徽标应与文本正确对齐。

\documentclass[a4paper,20pt]{article}

\usepackage{latexsym}
\usepackage[empty]{fullpage}
\usepackage{titlesec}
\usepackage{marvosym}
\usepackage[usenames,dvipsnames]{color}
\usepackage{verbatim}
\usepackage{enumitem}
\usepackage[pdftex]{hyperref}
\usepackage{fancyhdr}
\usepackage{graphicx}

\pagestyle{fancy}
\fancyhf{} % clear all header and footer fields
\fancyfoot{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}

% Adjust margins
\addtolength{\oddsidemargin}{-0.530in}
\addtolength{\evensidemargin}{-0.375in}
\addtolength{\textwidth}{1in}
\addtolength{\topmargin}{-.45in}
\addtolength{\textheight}{1in}
\urlstyle{rm}



\begin{document}
    
    %----------HEADING-----------------
    \begin{tabular*}{\textwidth}{l@{\extracolsep{\fill}}r}
        \textbf{{\LARGE FirstName LastName}} & Email: \href{mailto:[email protected]}{[email protected]}\\
        \href{https://sample.com}{Portfolio: sample.com} & Mobile:~~~+91-999-9999-999 \\
        \href{https://github.com/sample}{Github: ~~github.com/sample} & \\
    \end{tabular*}

\end{document}

这是当前输出:

输出

相关内容