Necesito obtener mis imágenes. ¿Hay alguna forma de hacer eso?

Necesito obtener mis imágenes. ¿Hay alguna forma de hacer eso?

Tengo muchas cifras en mi tesis y necesito agregarles fuentes de Internet al final de mi trabajo. ¿Cómo puedo lograrlo?

EDITAR: No tengo una lista de figuras. Utilizo sólo subtítulos grandes. ¿Cómo puedo hacerlo?

\documentclass{article}

\usepackage[cp1250]{inputenc}
\usepackage[czech]{babel}
\usepackage{graphicx}
\usepackage{csquotes}
\usepackage{comment}
\usepackage{wrapfig}

\graphicspath{{enigma/}} 

\begin{document}             

\maketitle

\section{Kryptografie}

\subsection{Historie}

Slovo kryptografie pochází z řeckého \textit{kryptos} (tzn. skrytý) a \textit{graphein} (tzn. písmo). 
Nejstarší šifry jsou připisovány Sumerům  (3500 B.C.) a Egypťanům (1900 B.C.).   \cite{dirac}
Vzhledem k tomu, že většina lidí neuměla číst, lze za šifrování považovat právě i sumerské klínové písmo nebo egyptské hieroglyfy.             

\section{Enigma}
\subsection{Teorie}

Motivací k tvorbě mechanického šifrovacího přístroje bylo počátkem 20. století mnoho.
Běžné, ručně šifrované texty byly příliš pomalé a s~rozvojem matematiky i neúčelné.
Tohle všechno ještě potvrdila 1. světová válka.

Mezi první takové pokusy patří například Hebernův stroj. 
\begin{wrapfigure}{l}{0.4\textwidth}
  \begin{center}
    \includegraphics[width=0.4\textwidth]{hebern.jpg}
  \end{center}
  \centering
  \caption{Hebernův stroj}
\end{wrapfigure}

\medskip

\bibliographystyle{unsrt}
\bibliography{enigma}

\end{document}

Respuesta1

Vea si el paquete copyrightboxpuede resolver su problema. Está diseñado para agregar fuente de imagen a imagen:

\documentclass{article}
    \usepackage[utf8]{inputenc}
    \usepackage{graphicx}
    \usepackage{caption}
    \captionsetup{justification = centering}

    \usepackage{copyrightbox}% <---

\begin{document}
\begin{figure*}[!h]
    \centering
\copyrightbox[b]{\includegraphics[scale=0.8]{example-image}}{Source: http://tex.stackexchange.com/questions/291234/i-need-to-source-my-images-is-there-any-way-to-do-that}
\caption{How to add image source}
    \end{figure*}
\end{document}
    \end{document}

ingrese la descripción de la imagen aquí

Respuesta2

Para agregar un título a la figura y otro título a la Tabla de Figuras, puede utilizar \caption[Caption for Table of Figures]{Caption (may be longer) for the figure}.

Franco

información relacionada