라텍스의 오른쪽 하단에 서명을 이미지와 이름으로 배치하는 방법은 무엇입니까?

라텍스의 오른쪽 하단에 서명을 이미지와 이름으로 배치하는 방법은 무엇입니까?

라텍스 페이지 오른쪽 하단에 서명(이미지), 이름, 날짜를 배치하고 싶습니다. 어떻게 해야 합니까?

\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}

관련 정보