如何将注释与图的左侧对齐?

How to align the note with the left side of the figure?

我想在我的作品图片中添加注释,但注释与文本边框而不是图形对齐。 table的注解(Fonte: Elaborated by the author (2021))如何与图的左侧对齐?

\begin{figure}[h]
    \begin{center}
        \includegraphics[scale=.35]{image.jpg}  
        \caption{Text tex text.}
        \label{fig_intbus}
    \end{center}
\fonte{Elaborated by the author (2021)..}
\end{figure}

我想要类似于 table 的 threeparttable 环境的东西,但可以用在数字中。我考虑过 minipage 环境,但我不想手动指定每个图形的宽度。

这里是一个如何做的例子,定义一个新的标题。

\documentclass{article}
\usepackage{graphicx}
\usepackage{caption}
\newcommand{\fonte}[1]{\captionsetup{skip=0.5ex,position=b}\caption*{\textit{Fonte:} {#1}}}
\begin{document}
\begin{figure}
\centering
\includegraphics[width=0.5\textwidth]{example-image-a}
\caption{Example image.}
\label{fig-img-a}
\fonte{Teste.}
\end{figure}
\end{document}

结果是: