签名图像在线,下方有文字

签名图像在线,下方有文字

我尝试在 latex 模板中使用 png 中的手写签名图像制作签名。我喜欢将其放在一行上,名字作为文本放在下方。我尝试使用表格来制作,但我无法将其直接放在行上。我希望有人能在这里帮助我。

在此处输入图片描述

答案1

yshift使用 tikz,只需使用key更改签名图像的垂直位置即可

\documentclass{article}

\usepackage{graphicx}
\usepackage{tikz}

\begin{document}
\begin{tikzpicture}
\draw[thick](0,0)--(5,0)node[midway,yshift=1.2cm](c){\includegraphics[width=4cm]{example-image-a}};
\node[yshift=-3mm] at (c.south) {\bfseries My Name};
\end{tikzpicture}
\end{document}

答案2

我使用这个代码:

% on preamble
\def\sign{\includegraphics[scale=.8]{fig-here}\\[-4ex]} % set up the value
\def\myname{Euclides}
\def\LocalData{City, \today}

\begin{document}
\begin{flushright}\LocalData\par\bigskip 
   \begin{minipage}{6cm}\centering
   \sign\hrulefill\\\myname
   \end{minipage} 
   \end{flushright} 
\end{document}

相关内容