문서 유형 이력서에 대한 일부 기본 세부 사항 변경

문서 유형 이력서에 대한 일부 기본 세부 사항 변경

이력서를 작성하고 사용 중입니다.이 웹사이트의 템플릿 "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

-like 구조 내에 전체 "주소"를 설정할 수 있습니다 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}

관련 정보