그림목록에 인용정보를 추가할 수 있나요?

그림목록에 인용정보를 추가할 수 있나요?

학사 논문의 사진은 본인이 출처가 아닌 사진을 사용하고 있기 때문에 웹사이트 링크 등의 인용 정보를 그림 목록에 넣고 싶습니다(하단 블록이 중요합니다). 그래서 기본적으로 나는 다음과 같은 것을 갖고 싶습니다 : 여기에 이미지 설명을 입력하세요

온라인에서 길을 찾을 수 없었습니다. 현재 내 이미지는 다음과 같이 표시됩니다.

    \begin{figure}
         \includegraphics[width=\linewidth]{~/Dropbox/Thesis/multi_layer_perceptron.jpg}
         \caption{Schematic View of a Multilayer Perceptron}
         \label{fig:mlp}
    \end{figure}

그리고 다음과 같은 수치 목록이 있습니다 \listoffigures. 를 야기하는: 여기에 이미지 설명을 입력하세요

어쩌면 내가 너무 경험이 부족한 것일 수도 있습니다. 그렇다면 이를 수행하는 Tex 방식은 무엇입니까? :)

편집: @John Kormylo의 게시물 덕분에 다음 솔루션을 찾았습니다. \caption[Schematic View of a Multilayer Perceptron\newline{Image retrieved from }\url{https://www.tutorialspoint.com/tensorflow/tensorflow\_multi\_layer\_perceptron\_learning} (Visited on 08/06/2019)]

결과는 다음과 같습니다. 여기에 이미지 설명을 입력하세요 나는 오히려 만족하지만 여전히 더 쉽고 더 나은 보기를 희망합니다.

답변1

LOF에 대한 별도의 캡션을 선택적 인수로 입력할 수 있습니다. \protect인쇄할 준비가 될 때까지 매크로가 확장되는 것을 방지하는 데 사용됩니다. 필요하지 않은 경우에도 aux 파일이 더 짧아집니다.

\documentclass{article}
\usepackage{graphicx}
\usepackage{hyperref}

\begin{document}
\listoffigures
\newpage
\begin{figure}
   \includegraphics{example-image-A}
   \caption[\protect\hypertarget{lof.\thefigure}{}LOF version of caption
       \newline Available from \protect\url{www.elfsoft2000.com}]
    {Caption with link to LOF (see \hyperlink{lof.\thefigure}{Figure \thefigure})}
   \label{fig:mlp}
\end{figure}
\begin{figure}
   \includegraphics{example-image-B}
   \caption[Caption with footnote\protect\footnote{\protect\url{www.elfsoft2000.com}}]
     {Normal Caption}
   \label{fig:mlp}
\end{figure}

\end{document}

관련 정보