在简历模板中插入图片时遇到问题

在简历模板中插入图片时遇到问题

我正在根据乳胶模板制作简历(链接:https://www.sharelatex.com/templates/cv-or-resume/cies-breijs-resume) 我想插入一个图形。

模板右上角有一些可用空间(如果去掉日期),我想在那里插入图片。但是我无法在正确的位置放一张小图片。我尝试在多个地方使用 wrapfigure 和常规图片,并使用多种设置。目的是在右上角放一张小的个人资料图片。有人能帮忙吗?

相关代码为:

% Start a document with the here given default font size and paper size.
\documentclass[10pt,a4paper]{article}

% Set the page margins.
\usepackage[a4paper,margin=0.75in]{geometry}

% Setup the language.
\usepackage[english]{babel}
\hyphenation{Some-long-word}

% Makes resume-specific commands available.
\usepackage{resume}




\begin{document}  % begin the content of the document
\sloppy  % this to relax whitespacing in favour of straight margins


% title on top of the document
\maintitle{Cies Breijs}{June 12, 1982}{Last update on \today}

\nobreakvspace{0.3em}  % add some page break averse vertical spacing

% \noindent prevents paragraph's first lines from indenting
% \mbox is used to obfuscate the email address
% \sbull is a spaced bullet
% \href well..
% \\ breaks the line into a new paragraph
\noindent\href{mailto:cies.at.kde.dot.nl}{cies\mbox{}@\mbox{}kde.nl}\sbull
\textsmaller{+}31.646469087\sbull
{\newnums cies010} \emph{(Skype)}\sbull
\href{http://www.linkedin.com/in/ciesbreijs}{www.linkedin.com/in/ciesbreijs}
\\
Mathenesserplein 84\sbull
3022\thinspace {\large \sc ld}\sbull
Rotterdam\sbull
The Netherlands

\spacedhrule{0.9em}{-0.4em}  % a horizontal line with some vertical spacing before and after

\roottitle{Summary}  % a root section title

其余部分未包括在内,但可在链接中获取。

编辑:

我的第二个问题的示例(请参阅对已接受答案的评论)。蓝色是页面外的图像,即右上角太多。如果图像的中心与红色文本大致重合,那就更好了。红色文本被划掉以保护隐私。

在此处输入图片描述

答案1

无需额外的软件包;只需将您的图像包含在标准中\includegraphics并使用\smash,如下所示

The Netherlands\hfill 
\smash{\includegraphics[width=3cm]{example-image-a}}

完整示例:

在此处输入图片描述

代码:

\documentclass[10pt,a4paper]{article}
\usepackage[a4paper,margin=0.75in]{geometry}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{resume}

\begin{document}
\sloppy

\maintitle{Cies Breijs}{June 12, 1982}{}

\nobreakvspace{0.3em}

\noindent\href{mailto:cies.at.kde.dot.nl}{cies\mbox{}@\mbox{}kde.nl}\sbull
\textsmaller{+}31.646469087\sbull
{cies010} \emph{(Skype)}\sbull
\href{http://www.linkedin.com/in/ciesbreijs}{www.linkedin.com/in/ciesbreijs}
\\
Mathenesserplein 84\sbull
3022\thinspace {\large \sc ld}\sbull
Rotterdam\sbull
The Netherlands\hfill 
\smash{\includegraphics[width=3cm]{example-image-a}}

\spacedhrule{0.9em}{-0.4em}

\roottitle{Summary}

\end{document}

更新

如果图像的高度太大,可以将其减小\includegraphics,例如

\includegraphics[height=2cm]{example-image-a}

或者使用类似

The Netherlands\hfill 
\raisebox{-.5\totalheight}[0pt][.5\totalheight]{\includegraphics[width=3cm,height=5cm]{example-image-a}}

答案2

您可以明确放置图像。有多种方法可以做到这一点。我认为最简单的方法是使用TikZ

在您的序言中输入\usepackage{tikz}以加载包。要包含图像,请在下面输入\begin{document}

\begin{tikzpicture}[remember picture, overlay]
  \node [anchor=north east, inner sep=0pt]  at (current page.north east)
     {\includegraphics[height=3cm]{example-image}};
\end{tikzpicture}

另一种可能性是使用textpos包裹

相关内容