
Quiero recortar el título de la figura para mostrar parte del título, digamos la primera oración. Al mismo tiempo, no quiero eliminar el título real del documento. Necesito la explicación completa de la figura pero no en la lista de figuras. ¿Cómo lograr esto?
Este es el ejemplo del guión:
\documentclass{book}
\begin{document}
\tableofcontents
\listoffigures
\chapter{(Chapter Name)}
\section{Real Analysis}
\begin{figure}
\caption{A very long figure caption here. I need to display part of it because this very long caption does not look right in the list of figures. Nevertheless, I need this full description in the caption. I just do not want all of it to appear in the listoffigures}
\end{figure}
\section{Role of LUB Axiom}
\end{documento}
Respuesta1
el comando caption tiene una entrada opcional, que se muestra en la lista de figuras/tablas/etc.: \caption[Short title for lof]{Long title for document}
Su documento se vería así:
\documentclass{book}
\begin{document}
\tableofcontents
\listoffigures
\chapter{(Chapter Name)}
\section{Real Analysis}
\begin{figure}
\caption[A short caption for the lof]{A very long figure caption here. I need to display part of it because this very long caption does not look right in the list of figures. Nevertheless, I need this full description in the caption. I just do not want all of it to appear in the listoffigures}
\end{figure}
\section{Role of LUB Axiom}
\end{document}