问题:

问题:

我这里有一个非常棘手的问题:

梅威瑟:

\documentclass[12pt,german]{article}
\usepackage[demo]{graphicx}
\usepackage{caption}
\usepackage[list=true]{subcaption}
\begin{document}
\begin{figure}
        \centering
        \begin{subfigure}[b]{0.3\textwidth}
                \includegraphics[width=\textwidth]{}
                \caption{Caption1}
        \end{subfigure}%
        ~ %add desired spacing between images, e. g. ~, \quad, \qquad etc.
          %(or a blank line to force the subfigure onto a new line)
        \begin{subfigure}[b]{0.3\textwidth}
                \includegraphics[width=\textwidth]{}
                \caption{Caption2}
        \end{subfigure}
        ~ %add desired spacing between images, e. g. ~, \quad, \qquad etc.
          %(or a blank line to force the subfigure onto a new line)
        \begin{subfigure}[b]{0.3\textwidth}
                \includegraphics[width=\textwidth]{}
                \caption{Caption3}
        \end{subfigure}
        \caption{Caption0}
\end{figure}
\listoffigures
\end{document}

问题:

我需要在图片列表中列出图片的来源。图片的标题必须位于图像下方(底部)。

我需要的:

     List of Figures

1    Caption ............................................. 1
     (a)    Caption1 ..................................... 2
            Source: http://tex.stackexchange.com
     (b)    Caption2 ..................................... 3
            Source: StackExchange
            Graphic: Severin

有人有主意吗?

相关内容