在写简历时,我会尽量在简历顶部的相应信息前加上电子邮件、电话、推特等符号。因此,我基本上做了以下事情:
\documentclass[margin, 10pt]{res} % Use the res.cls style, the font size can be changed to 11pt or 12pt here
\usepackage{import}
\usepackage{helvet} % Default font is the helvetica postscript font
%\usepackage{newcent} % To change the default font to the new century schoolbook postscript font uncomment this line and comment the one above
\usepackage{fontawesome}
\setlength{\textwidth}{5.1in} % Text width of the document
\begin{document}
\mobile{+1...}
\twitter{...}
\end{document}
但是,我收到了“未定义控制序列”错误。我尝试遵循其中一个模板,但不明白是什么导致了这个问题。
答案1
假设你正在使用res
来自https://ctan.org/pkg/res。这是 2001 年最后一次更新,所以我怀疑它是否有特殊命令来插入您的 Twitter 联系人。但是您可以简单地输入图标,如下所示:
\documentclass[margin]{res}
\usepackage{fontawesome}
\begin{document}
\faMobile\ +1...
\faTwitter\ ...
\end{document}