\documentclass[margin]{res}
\textwidth=5.2in % increase textwidth to get smaller right margin
\begin{document}
\name{{Ccccc Habcdefghijkl}} % the \\[12pt] adds a blank line after name
\address{2586 12th Ave SE \\ Dfhij Lmno, TX 23456 \\ (111) 111-1111\\ [email protected] }
\begin{resume}
\section{Objective}
To gain exposure to the
\section{Education}
\end{resume}
\end{document}
答案1
一个快速但不完美的解决方案(部分数据翻倍):
\documentclass[margin]{res}
\textwidth=5.2in % increase textwidth to get smaller right margin
\begin{document}
\name{{Ccccc Habcdefghijkl}} % the \\[12pt] adds a blank line after name
\address{2586 12th Ave SE \\ Dfhij Lmno, TX 23456 Dfhij Lmno, TX 23456 \\ (111) 111-1111\\ \hfil [email protected] }
\begin{resume}
\section{Objective}
To gain exposure to the
\section{Education}
\end{resume}
\end{document}
所有工作均在\hfil
电子邮件之前完成。
答案2
在res
文档类,地址设置在单列中l
。tabular
因此,tabular
可以进行常规样式的调整。例如,使用以下方式设置电子邮件地址\multicolumn{1}{c}{...}
将覆盖默认的l
eft 对齐方式:
\address{%
2586 12th Ave SE \\
Dfhij Lmno, TX 23456 Dfhij Lmno, TX 23456 \\
(111) 111-1111 \\
\multicolumn{1}{c}{[email protected]}}
产量
对于完全居中的地址块,请参阅使用 res.cls LaTeX 文件,如何将地址居中?