注意下图只要图-全部居中但注意左对齐

注意下图只要图-全部居中但注意左对齐

我的图也存在类似的问题,图是按比例缩放的,因此下面的脚注/文本将与线宽一样长,而不是与图一样长。图位于中心,我希望其上方的标题也位于中心。但说明应位于图下方,并且与图一样长(左对齐)。标题为我提供了图上方的文本,文本也超出了图的范围。这是我得到的结果:

% I tried this:
% but the text starts outside the figure \\
\begin{figure}[hp]\caption[]{Balancing Diagnostics Kernel}
\footnotesize\centering
\includegraphics[width=0.7\textwidth]{Gaus.pdf}
\item\emph{Notes:} This figure provides a graphical illustration of the common trend assumption. And again this figure provides a graphical illustration of the perfect approach for estimating something.
\end{figure}

对于不是文本宽度而是 0.7\textwidth 的图形,您有什么想法吗?如何获得缩放图形下方的图形解释,以使其与图形一样短?

这与这个问题类似,但解决方案似乎不适用于缩放图形。 注意下图

答案1

您可以将图片及其描述放入minipage环境中。现在您可以设置图片的宽度只需调整minipage宽度即可将下面的文本设置为相同的值。注意:您必须将图像的宽度设置为\linewidth\linewidth页面的宽度。

\documentclass{article}
\begin{document}
\begin{figure}[hp]\caption[]{Balancing Diagnostics Kernel}
\centering
\begin{minipage}{.7\linewidth}
%\includegraphics[width=\linewidth]{Gaus.pdf}
\rule{\linewidth}{10em}
\footnotesize
\emph{Notes:} This figure provides a graphical illustration of the common trend assumption. And again this figure provides a graphical illustration of the perfect approach for estimating something.
\end{minipage}
\end{figure}
Some other random text that should fill the whole line like blablabla and the like...
\end{document}

在此处输入图片描述

相关内容