Code: Select all
\includegraphics[]{sig.png}
\signature{Dr~S.~E.~Dnavegem}
Code: Select all
\includegraphics[]{sig.png}
\signature{Dr~S.~E.~Dnavegem}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
\includegraphics
is a simple and straightforward way. Then it's just about positioning.It's simple, but no so much when it is combination with a signature. For KOMA (from the link already cited):Stefan_K wrote:Yes,\includegraphics
is a simple and straightforward way. Then it's just about positioning.
Stefan
Code: Select all
\newsavebox\signaturebox
\sbox\signaturebox{%
\begin{tabular}{@{}c@{}}
\smash{\includegraphics[height=2.25em]{example-image.pdf}}\\[5pt]
(\usekomavar{fromname})
\end{tabular}}
\setkomavar{signature}{\usebox{\signaturebox}}%
Code: Select all
\signature{\includegraphics[width=10em]{signature}\\Dr~S.~E.~Dnavegem\\ Collaborateur Scientifique}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis