将图片右对齐(使用 \raggedleft),同时仍将其标题相对于图像居中

将图片右对齐(使用 \raggedleft),同时仍将其标题相对于图像居中

我想知道是否可以将图像与页面的右边距对齐(用\raggedleft),同时仍让其标题\centering在图像下方居中(用)(我的意思是相对于图像本身居中,而不是相对于页面居中)。

这在乳胶中可行吗?理想情况下,解决方案应该在figurewrapfigure环境中都有效。

答案1

如果我正确理解了你的问题,你可以简单地使用minipage

\documentclass{article} 
\usepackage[demo]{graphicx}
\usepackage[margin=10pt,font=small,labelfont=bf,justification=centering]{caption}
\usepackage{lipsum}

\begin{document}

\lipsum[2]
\begin{figure}
  \raggedleft
  \begin{minipage}{5cm}
  \includegraphics[width=5cm]{name}
  \caption{Some caption that spans more than a line and some additional text}
  \end{minipage}
\end{figure}

\end{document}

在此处输入图片描述

相关内容