如何在乳胶中将签名作为图像和名称放置在右下角?

如何在乳胶中将签名作为图像和名称放置在右下角?

我想在 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}

相关内容