Latex &引用;证明“合理”;在乳胶中排列

Latex &引用;证明“合理”;在乳胶中排列,latex,Latex,我希望我的电子邮件id在左边,电话号码在中间,网站在右边,也就是说,我希望这行是“正当”对齐(请看图片)。 我使用“\hspace{}”来添加空间,但我认为这不是正确的方法。 resume.cls的链接: 我尝试了以下代码: \documentclass{resume} \usepackage{tabularx} \usepackage{hyperref} \hypersetup{colorlinks=true,urlcolor=blue} \hypersetup{linktocpage}

我希望我的电子邮件id在左边,电话号码在中间,网站在右边,也就是说,我希望这行是“正当”对齐(请看图片)。 我使用“\hspace{}”来添加空间,但我认为这不是正确的方法。 resume.cls的链接:

我尝试了以下代码:

\documentclass{resume} 
\usepackage{tabularx}
\usepackage{hyperref} 
\hypersetup{colorlinks=true,urlcolor=blue}
\hypersetup{linktocpage}
\usepackage{marvosym} 
\usepackage[bitstream-charter]{mathdesign}
\usepackage[left=1cm,top=0.5cm,right=1cm,bottom=0.1cm]{geometry} 
\name{\bf Saksham Sharma}
\address{
{\Large\Letter}{\href{mailto:abc@gmail.com}{abc@gmail.com}}
{\Large\Telefon} +1-xxx-xxx-xxxx
{\Large\Mundus} {\href{example.com}{example.com}}
}

\begin{document}

\end{document}

使用
\hfill
将内容推到两侧:

然而,我建议不要使用一些限制性的
resume
课程来设置你的简历,除非这是非常花哨的东西。相反,只需使用
文章


你使用了哪个简历类?我添加了resume.cls的链接
\documentclass{resume}

\usepackage{marvosym}
\usepackage[bitstream-charter]{mathdesign}
\usepackage{geometry}
\geometry{
  hmargin=1cm,
  top=5mm,
  bottom=1mm
}

\usepackage{hyperref}
\hypersetup{
  colorlinks=true,
  urlcolor=blue,
  linktocpage
}

\name{\bfseries Saksham Sharma}
\address{%
  {\Large\Letter}{\href{mailto:abc@gmail.com}{abc@gmail.com}}\hfill
  {\Large\Telefon} +1-xxx-xxx-xxxx\hfill
  {\Large\Mundus} {\href{example.com}{example.com}}%
}

\begin{document}

\end{document}
\documentclass{article}

\usepackage{marvosym}
\usepackage[bitstream-charter]{mathdesign}
\usepackage{geometry}
\geometry{
  hmargin=1cm,
  top=5mm,
  bottom=1mm
}

\usepackage{hyperref}
\hypersetup{
  colorlinks=true,
  urlcolor=blue,
  linktocpage
}

\setlength{\parindent}{0pt}

\begin{document}

{\centering

{\huge\bfseries \MakeUppercase{Saksham Sharma}\par}
\bigskip
{\Large\Letter}{\href{mailto:abc@gmail.com}{abc@gmail.com}}\hfill
{\Large\Telefon} +1-xxx-xxx-xxxx\hfill
{\Large\Mundus} {\href{example.com}{example.com}}
\par}

\smallskip

Your resume here

\end{document}