内嵌图形,标题位于实际图形底部

内嵌图形,标题位于实际图形底部

我希望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}

相关内容