添加照片佔位符並將其與標題對齊

添加照片佔位符並將其與標題對齊

我正在嘗試學習 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在名稱和圖像之間使用 an,然後\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}

相關內容