What is the correct way to add a signature figure to an article in LaTeX? I need to sign an article by adding the image of my signature under my typeset name.
This are the packages and the document class I'm using now:
\documentclass[]{article}
\usepackage[utf8]{inputenc}
\usepackage[greek, italian]{babel}
\usepackage{fullpage}
\usepackage{boxedminipage}
\usepackage{listings}
\usepackage{minitoc}
\usepackage{graphicx}
Now my name is aligned onto the right of the page by using:
\flushright\parbox{5cm}{Daniele Spinosa}
like a letter signature. I'd like to add my signature image below it. How can I do that?
\flushrigthis not a valid commad it's the internal start of the{flushright}environment. Better use\raggedleftor\hspace*{\fill}Daniel, if only a single line should be pushed to the right margin, instead ... – Tobi Nov 01 '13 at 23:34