如何将图形的标题放在图片的底部,就像表格的标题一样?
答案1
无需手动更改所有\caption
,只需加载浮行包裹:
\documentclass{article}
\usepackage{floatrow}
% \floatsetup[figure]{capposition=top}
\begin{document}
\begin{figure}
\caption{A figure}
(Figure content)
\end{figure}
\end{document}
答案2
无论您将命令放在\caption
上方还是下方\includegraphics
(或其他任何位置),都会影响标题是出现在所含图形的上方还是下方。
还要注意,应该\label
位于的下方\caption
。