如何在图形的顶部和底部添加一个标题?

如何在图形的顶部和底部添加一个标题?

根据我在此网站上找到的建议,我尝试了以下操作:

\documentclass{article}
\usepackage{floatrow}
\usepackage{graphicx}

\begin{document}

I want to include the figure below having one caption at the top and one at the bottom

\begin{figure}[h]
\begin{floatrow}
\caption{My caption at the top}\smallskip
  \includegraphics[width=\textwidth]{example-image-a}
  \floatfoot{\textbf{S}}
\end{floatrow}
\end{figure}

\end{document}

但是两个标题都位于图的底部,而我希望一个位于顶部,另一个位于底部。我该怎么做?提前致谢。

相关内容