答案1
article
假设你正在使用“标准”LaTeX 文档类( 、report
或)之一book
或基于这些类之一构建的文档类,我建议你加载托克洛夫特打包并发出指令
\cftsetindents{figure}{0pt}{3.5em}
在序言中。(你显然可以自由地修改选择3.5em
以满足你的需要。)
完整的 MWE (最小工作示例) 及其输出:
\documentclass{report}
\usepackage{chngcntr}
\counterwithin{figure}{section}
\usepackage[titles]{tocloft}
\cftsetindents{figure}{0pt}{3.5em}
\usepackage[colorlinks,allcolors=blue]{hyperref}
\begin{document}
\setcounter{chapter}{4} % just for this example
\setcounter{section}{4}
\setcounter{figure}{10}
\listoffigures
\begin{figure}
\caption{Linear elastic physics domain}
\end{figure}
\begin{figure}
\caption{Fixed domain}
\end{figure}
\begin{figure}
\caption{Fluid-structure interaction boundaries}
\end{figure}
\begin{figure}
\caption{Plane of symmetry}
\end{figure}
\begin{figure}
\caption{Adiabatic pressure at the channel inlet}
\end{figure}
\end{document}