添加照片占位符并将其与标题对齐

添加照片占位符并将其与标题对齐

我正在尝试学习 TeX,我需要添加照片占位符并将其与标题对齐。

我有以下代码

\documentclass[margin,line]{res}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}


\begin{document}
\name{\LARGE Person's name}
\photo[64pt][0.15pt]{picture}

\end{document}

我想要得到以下输出: 期望输出

上面的代码在使用时会抛出一个错误\photo[64pt][0.15pt]{picture}。顺便说一下,这是一份带有德国风格(Lebenslauf)主题照片的简历。

我该如何实现这一点?我也在看此解决方案但我不知道如何让占位符位于标题线之上。

答案1

我建议在默认article文档类中编写简历。但是,由于您使用的是res,您可以使用以下内容:

在此处输入图片描述

\documentclass[margin,line]{res}
\usepackage{graphicx}
\renewcommand{\namefont}{\bfseries\LARGE}
\begin{document}

\name{\makebox[\textwidth]{Person's name\hfill \includegraphics[height=2\baselineskip]{example-image}}}
\opening
\end{document}

答案2

一种方法是像宏一样使用一种tabular环境类型,或者不使用包,在名称和图像之间\NameAndPhoto使用,然后自己绘制:\hfill\rule

在此处输入图片描述

代码:

\documentclass{article}
\usepackage{tabularx}
\usepackage{graphicx}

\newcommand*{\NameAndPhoto}[2]{%
    \noindent
    \begin{tabularx}{\linewidth}{@{}Xr@{}}
        \textbf{\Large #1} & \includegraphics[width=2.0cm,height=1.5cm]{#2} \\ \hline
    \end{tabularx}
}

\newcommand*{\NameAndPhotoNonTabular}[2]{%
    \noindent%
    \textbf{\Large #1}\hfill\includegraphics[width=2.0cm,height=1.5cm]{#2}%
    \par\vspace{-0.75\baselineskip}%
    \noindent%
    \rule{\linewidth}{0.4pt}
}


\begin{document}
\NameAndPhoto{Person's name}{../images/EiffelWide}
\bigskip\par
\NameAndPhotoNonTabular{Person's name}{../images/EiffelWide}
\end{document}

相关内容