如何更改图表/表格列表中多行标题的行距?

如何更改图表/表格列表中多行标题的行距?

我想知道如何调整多行条目中的行距?我想增加包含在图表/表格中的多行条目中的行距。我尝试搜索但找不到如何操作。

最小源:

\documentclass{article}
\usepackage{tocloft}


\begin{document}
\setlength\cftbeforefigskip{\baselineskip}
\renewcommand\cftfigpresnum{Figure }
\cftsetindents{fig}{0pt}{6.2pc}
\renewcommand\cftfigdotsep{1}
\renewcommand\cftfigleader{\normalfont\cftdotfill{\cftdotsep}}
\listoffigures

    
\begin{figure}
    \caption{something}
\end{figure}
\begin{figure}
    \caption{fig name so long that it can wrap around fig name so long that it can wrap aroundfig name so long that it can wrap aroundfig name so long that it can wrap around}
\end{figure}
\end{document}

我拥有的: 现在示例

我需要它是这样的: 在此处输入图片描述

非常感谢您的帮助。谢谢。

相关内容