我希望inline figure
标题能够打印在 中actual figure bottom
。但是inline
图形不支持caption
以及如何caption
在 内打印bottom of the figure
。我的 MWE 是:
![在此处输入图片描述][1]
\documentclass{book}
\usepackage{graphics,lipsum,caption}
\begin{document}
\chapter{Chapter Title}
\lipsum[1]
\includegraphics{image-a}
%\caption{The Roman numerals on this stone show how many miles it is from a town}
\lipsum[3]
\end{document}
答案1
\documentclass{book}
\usepackage{graphicx,lipsum,caption}
\begin{document}
\chapter{Chapter Title}
\lipsum[1]
\begin{center}
\includegraphics[width=.7\textwidth]{example-image-a}%
\kern-.7\textwidth
\parbox[b]{.7\textwidth}{%
The Roman numerals on this stone show how many miles it is from a town}
\end{center}
\lipsum[3]
\end{document}