LaTeX で右下隅に画像と名前として署名を配置するにはどうすればよいですか?

LaTeX で右下隅に画像と名前として署名を配置するにはどうすればよいですか?

LaTeX のページの右下隅に署名 (画像)、名前、日付を配置したいです。どうすればいいでしょうか?

\includegraphics[scale=0.15]{signature.png}
\newline \bfseries{My Name}
\newline \today

画像ではこんな感じです。

ここに画像の説明を入力してください

答え1

\documentclass{article}


\usepackage{graphicx}
\usepackage{tikz}
\usepackage{tikzpagenodes}


\begin{document}



\begin{tikzpicture}[remember picture,overlay,shift={(current page.south east)}]
\node[anchor=south east] (0,0) {\parbox{1.5in}{\includegraphics[width=1in]{pig}\\My name is pig}};
\end{tikzpicture}

\clearpage


\begin{tikzpicture}[remember picture,overlay,shift={(current page text area.south east)}]
\node[anchor=south east] (0,0)  {\parbox{1.5in}{\includegraphics[width=1in]{pig}\\My name is pig}};
\end{tikzpicture}

\end{document}

関連情報