5
You can use the package caption
and then use \caption{}
as many times as you want. To determine the position of the legend will follow the order in which you write the code. So, for a legend above and another below:
\caption{}
\includegraphics{}
\caption*{}
Detail that in the second \caption{}
I added a *
not to number the legend.
Example:
\documentclass{article}
\usepackage[brazilian]{babel}
\usepackage[utf8]{inputenc}
\usepackage[demo]{graphicx}
% pacotes para legenda
\usepackage{caption}
\begin{document}
\begin{figure}
\centering
\caption{Taxonomia de Jogos Sérios}
\centering
\includegraphics[width=.4\linewidth]{image1}
\caption*{Fonte: Laamarti, Eid e El Saddik (2014, tradução nossa)}
\label{fig:test}
\end{figure}
\end{document}