CV图像Latex代码

CV图像Latex代码

我想添加 CV 图片以添加到此部分的右侧(见图)。图片必须几乎适合数据部分。我尝试了很多方法,但都没有用。有人知道我该怎么做吗?

%Section: Personal Data 
\section{Personal Data}

\begin{tabular}{rl} 
\textsc{Full Name:} & Rick  \\
\textsc{Place and Date of Birth:} & place and birth \\
\textsc{Sex:} & Male\\

\textsc{Address:}   & address \\
\textsc{Phone:}     & +number\\
\textsc{email:}     & \href{mailto:mail}      {mail!}\\
\textsc{Skype:}     & skype.name\\


\end{tabular}

一只忙碌的猫 图片

答案1

您可以使用 TiKZ 创建不会干扰其余布局的覆盖图像。我不知道您使用什么软件包创建了上面的屏幕截图,所以我无法准确重现您的布局。这就是我们坚持提供最小工作示例 (MWE) 的原因之一——请参阅我上面的评论。不过,以下内容应该可以帮助您入门:

\documentclass{article}

\usepackage{fullpage}
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage{tikz}
\usepackage{tikzpagenodes}

\begin{document}

\begin{tikzpicture}[overlay, remember picture]
  \node[anchor=north east, inner sep=0pt] at (current page text area.north east) 
     {\includegraphics[height=4cm]{rick.jpg}};  
\end{tikzpicture}

\begin{center}
\Huge \textbf{Rick}
\end{center}

\section{Personal Data}

\begin{tabular}{rl} 
\textsc{Full Name:} & Rick  \\
\textsc{Place and Date of Birth:} & place and birth \\
\textsc{Sex:} & Male\\

\textsc{Address:}   & address \\
\textsc{Phone:}     & +number\\
\textsc{email:}     & \href{mailto:mail}{mail!}\\
\textsc{Skype:}     & skype.name\\
\end{tabular}
\end{document}

在此处输入图片描述

也许我误解了你的问题;如果你想把图片里面个人数据部分,您可以使用以下包在表中使用多行单元格multirow

\documentclass{article}

\usepackage{fullpage}
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage{multirow}

\begin{document}

\section{Personal Data}
\begin{tabular}{rp{8cm}r} 
\textsc{Full Name:} & Rick  & \multirow{7}{3cm}{\includegraphics[height=3cm]{rick.jpg}}\\
\textsc{Place and Date of Birth:} & place and birth \\
\textsc{Sex:} & Male\\

\textsc{Address:}   & address \\
\textsc{Phone:}     & +number\\
\textsc{email:}     & \href{mailto:mail}      {mail!}\\
\textsc{Skype:}     & skype.name\\
\end{tabular}

\section{Education}

\end{document}

在此处输入图片描述

相关内容