更改有關文檔類型簡歷的一些基本詳細信息

更改有關文檔類型簡歷的一些基本詳細信息

我正在寫我的簡歷並使用來自該網站的模板“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}

這是編譯後的螢幕截圖

在此輸入影像描述

  1. 正如你所看到的,即使我的 TeX 程式碼提到了我的網站名稱www.google.com 編譯器似乎忽略它並跳到下一個帶有電話號碼的地址行。為什麼會發生這種情況?

  2. 我的郵寄地址太長。但是當我嘗試使用將我的郵寄地址分成兩行時\\,沒有效果。郵寄地址仍然全部顯示在一行上。

  3. 我想在我的名字下面寫上我的國籍和簽證類型。我該怎麼做呢?所有地址行都位於頁面的最右側。我想將我的簽證類型和國籍放在頁面左側我的名字下方。

答案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}

相關內容