写真のプレースホルダーを追加してタイトルに揃える

写真のプレースホルダーを追加してタイトルに揃える

私は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

tabular1 つの方法は、マクロのように環境のタイプを使用する\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}

関連情報