图像下方的典型标题如下:
图 1.1:无论内容是什么
______这里描述了它。
我的问题是我想在“图 1.1”下面的位置写下______。我设法用 Fig 替换了“Figure”,因此丢失的空间不是很大,但仍然很烦人……有什么办法可以避免这种缩进吗?也许可以用 \noindent?但这需要在任何地方插入手动换行符……
我无法提供最小的工作示例,因为它需要一张图片,但是每个人在图片下方写至少两行的小标题时都应该看到这个问题。
有人能帮助我吗?
答案1
您可以将标题缩进设置为0pt
使用\setcapindent
;这是一个使用您的一些标题设置的小示例(我抑制了format=hang, justification=RaggedLeft
,因为它们与您想要的格式相矛盾):
\documentclass{scrreprt}
\usepackage[singlelinecheck=false, figurename=Fig., aboveskip=7pt, belowskip=0pt]{caption}
\setcapindent{0pt}
\begin{document}
\chapter{Test Chapter}
\begin{figure}
\centering
A
\caption{Some text here to replace the actual caption for this figure. Add some more text to span several lines.}
\end{figure}
\结束{文档}
答案2
使用
\usepackage[format=plain,
justification=RaggedRight,
singlelinecheck=false,
figurename=Fig.,
aboveskip=7pt,
belowskip=0pt]{caption}
而不是您的设置。