文書タイプの履歴書に関する基本的な詳細を変更する

文書タイプの履歴書に関する基本的な詳細を変更する

私は履歴書を書いていて、このウェブサイトのテンプレート「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コードには私のウェブサイト名が書かれていますがグーグル コンパイラはそれを無視し、電話番号のある次の住所行にスキップするようです。なぜそうなるのでしょうか?

  2. 私の郵送先住所は長すぎます。 を使用して郵送先住所を 2 行に分割しようとしましたが\\、効果はありませんでした。郵送先住所は依然として 1 行に表示されます。

  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}

関連情報