我正在写我的简历并使用模板“9b”来自该网站。但是,有几项我想修改。
这是.tex
编译后的文件和相应的屏幕截图。
\documentclass[line,margin]{res}
\usepackage{newcent}
\begin{document}
\name{\huge{Andrew Parker}}
\address{123 M, Main Street, \\ Port Washington, NC, 12345}
\address{www.google.com}
\address{631-231-1232}
\begin{resume}
\section{OBJECTIVE} A position in the field of computers with special
interests in business applications programming,
\section{EDUCATION} {\sl Bachelor of Science,} Interdisciplinary Science \\
Rensselaer Polytechnic Institute, Troy, NY,
\end{resume}
\end{document}
这是编译后的屏幕截图
正如你所见,尽管我的 TeX 代码提到了我的网站名称www.google.com 编译器似乎忽略了它并跳到下一个包含电话号码的地址行。为什么会发生这种情况?
我的邮寄地址太长了。但是当我尝试使用 将我的邮寄地址分成两行时
\\
,没有任何效果。邮寄地址仍然显示在一行上。我想将我的国籍和签证类型写在我的名字下面。我该怎么做?所有的地址行都放在页面的最右侧。我想将我的签证类型和国籍写在我的名字下面的页面左侧。
答案1
您可以在类似结构中设置整个“地址” tabular
。下面我使用了tabularx
:
\documentclass[line,margin]{res}
\usepackage{newcent,tabularx}
\begin{document}
\name{\huge Andrew Parker}
\address{\begin{tabularx}{\textwidth}{@{}X l l@{}}
South African & Address: & 123 M, Main Street, \\
Permanent Resident & & Port Washington, NC, 12345 \\
& Website: & www.google.com \\
& Phone: & 631-231-1232
\end{tabularx}}
\begin{resume}
\section{OBJECTIVE} A position in the field of computers with special
interests in business applications programming,
\section{EDUCATION} {\sl Bachelor of Science,} Interdisciplinary Science \\
Rensselaer Polytechnic Institute, Troy, NY,
\end{resume}
\end{document}