在左侧的逐项列表中对带有图像的图形列表进行编号

在左侧的逐项列表中对带有图像的图形列表进行编号

根据我之前的问题:是否可以获取图片列表在左侧带有图片的逐项列表中进行编号?现在看起来有点奇怪的

答案1

这是一个解决方案。

\documentclass{article}
\usepackage{mwe}% just for the example

\usepackage{linegoal}


\newcommand{\mycaption}[1]{%
\refstepcounter{figure}%
\addcontentsline{lof}{figure}{\protect\numberline{\thefigure}{\ignorespaces  #1}}
\quad\parbox[b]{\linegoal}{#1}}

\begin{document}
\listoffigures
\begin{itemize}
\item \includegraphics[scale=.15]{example-image} \mycaption{caption} 
\item \includegraphics[scale=.2]{example-image} \mycaption{an other caption} 
\end{itemize}
\end{document}

相关内容