根据我在此网站上找到的建议,我尝试了以下操作:
\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}
但是两个标题都位于图的底部,而我希望一个位于顶部,另一个位于底部。我该怎么做?提前致谢。