简历地址与照片对齐

简历地址与照片对齐

我在简历对齐方面遇到了问题。我想在简历左上角显示我的地址,在右上角显示我的照片。以下是代码片段:

\begin{document}
\thispagestyle{empty} % this page has no header  
\name{john smith\\[12pt]}
\vspace{0pt} 
        \address{{\bf Permanent Address} \\ lablab12, 12345\\
 somewhere, Europe\\ Tel:(+9) 1238421\\Email :[email protected]}     
\address{\includegraphics[width=3cm]{CV}}

附言:作为一个技巧,为了在我的名字下显示照片,我使用了\address命令,但照片再次以这种形式出现:

在此处输入图片描述

如您所见,照片出现在地址的顶部,并且未与地址对齐。

答案1

从您展示的内容来看,没有必要使用(过时的)res文档类。但是,如果你坚持的话,我建议不要使用与标题相关的宏来设置文档的该部分。只需按原样设置它们:

在此处输入图片描述

\documentclass{res}

\usepackage[export]{adjustbox}

\begin{document}

\thispagestyle{empty} % this page has no header  

\begin{center}
  \bfseries John Smith
\end{center}

\begin{tabular}[t]{@{}l}
  \bfseries Permanent Address \\
  lablab12, 12345 \\
  somewhere, Europe \\
  Tel:(+9) 1238421 \\
  Email :[email protected]
\end{tabular}
\hfill
\includegraphics[width=3cm,valign=t]{example-image}%

\begin{resume}

Some content here.

\end{resume}

\end{document}

地址设置在[t]操作对齐的内tabular,并将照片推到右侧(使用\hfill)。adjustboxexport选项使选项可用于graphicx\includegraphics命令。这样,图像也通过align编辑vt图像的 op valign=t

相关内容