将图像放置在中心线左侧

将图像放置在中心线左侧

我有一份用 LaTeX 创建的简历,虽然页面全是文字,但我对结果非常满意。我将其发送给了一位招聘人员,她想将她的徽标放在页面顶部。由于页面已满,在我的姓名上方添加图片会将文本推到下一页,而我不想这样做。

我希望图像位于页面的右上角,靠近我的姓名和地址行。

序言如下:

\documentclass[10pt,letterpaper]{article} 
\pagestyle{empty}
\usepackage{graphicx}
\graphicspath{ {./images/} }
\usepackage[top=0.25in, bottom=0.25in, left=0.5in, right=0.5in, ]{geometry}
\usepackage{wrapfig}
\setlength\parindent{0pt} 
\usepackage{enumitem}
\usepackage{pifont}
\setlist[itemize,1]{topsep=0.75em,itemsep=-0.2em}
\setlist[itemize,2]{topsep=-0.5em,itemsep=-0.05em, label=\ding{226}}

然后我放上图片和我的名字:

\begin{document}
\begin{wrapfigure}{r}{3cm}
\includegraphics[width=0.25\textwidth]{images/recruiter-logo.png}
\end{wrapfigure}

\begin{center}
  {\bfseries\Large FIRST-NAME LAST-NAME, CFA} \\
  {\large Phone: xxx-xxx-xxxx $\bullet$ Email: [email protected]} \\[2em]
\end{center}

问题是,当我这样做时,图像最终会出现在我名字的下方几行,而不是右边。有人能建议我如何解决这个问题吗?

答案1

\vspace{0pt}我将在开头使用两个顶部对齐的小页面来设置参考点。

第一个小页面设置在零宽度框内,因此 TeX 不会看到它的实际宽度,第二个小页面则用 进行设置\centering

\documentclass[10pt,letterpaper]{article} 
\usepackage{graphicx}
\usepackage{enumitem}
\usepackage{pifont}
\usepackage[top=0.25in, bottom=0.25in, left=0.5in, right=0.5in, ]{geometry}

\graphicspath{ {./images/} }

\setlength\parindent{0pt} 

\setlist[itemize,1]{topsep=0.75em,itemsep=-0.2em}
\setlist[itemize,2]{topsep=-0.5em,itemsep=-0.05em, label=\ding{226}}

\pagestyle{empty}

\begin{document}

\makebox[0pt][l]{%
  \begin{minipage}[t]{3cm}% <--- adjust the desired width
  \vspace{0pt}
  \includegraphics[width=3cm]{example-image}% <--- replace with your image
  \end{minipage}%
}% <--- don't forget
\begin{minipage}[t]{\textwidth}
\centering
\vspace{0pt}
\Large\textbf{FIRST-NAME LAST-NAME, CFA} \\
\large Phone: xxx-xxx-xxxx $\bullet$ Email: [email protected]
\end{minipage}

\vspace{6ex}

The rest of the CV follows

\end{document}

在此处输入图片描述

对于右侧的图像,只需改变顺序(并使零宽度框右对齐)。

\documentclass[10pt,letterpaper]{article} 
\usepackage{graphicx}
\usepackage{enumitem}
\usepackage{pifont}
\usepackage[top=0.25in, bottom=0.25in, left=0.5in, right=0.5in, ]{geometry}

\graphicspath{ {./images/} }

\setlength\parindent{0pt} 

\setlist[itemize,1]{topsep=0.75em,itemsep=-0.2em}
\setlist[itemize,2]{topsep=-0.5em,itemsep=-0.05em, label=\ding{226}}

\pagestyle{empty}

\begin{document}

\begin{minipage}[t]{\textwidth}
\centering
\vspace{0pt}
\Large\textbf{FIRST-NAME LAST-NAME, CFA} \\
\large Phone: xxx-xxx-xxxx $\bullet$ Email: [email protected]
\end{minipage}% <--- don't forget
\makebox[0pt][r]{%
  \begin{minipage}[t]{3cm}% <--- adjust the desired width
  \vspace{0pt}
  \includegraphics[width=3cm]{example-image}% <--- replace with your image
  \end{minipage}%
}

\vspace{6ex}

The rest of the CV follows

\end{document}

在此处输入图片描述

答案2

要获得右侧的图片,请使用以下代码更改代码中相关部分

\begin{document}


\hfill%
  \begin{minipage}[t]{3cm}% <--- adjust the desired width
  \vspace{0pt}
  \includegraphics[width=3cm]{example-image}% <--- replace with your image
  \end{minipage}%

\begin{minipage}[t]{\textwidth}
\centering
\vspace{-47pt}
\Large\textbf{FIRST-NAME LAST-NAME, CFA} \\
\large Phone: xxx-xxx-xxxx $\bullet$ Email: [email protected]
\end{minipage}

\vspace{6ex}

The rest of the CV follows

相关内容