Quero cortar a legenda da figura para mostrar parte da legenda, digamos a primeira frase. Ao mesmo tempo, não quero cortar a legenda real do próprio documento. Preciso da explicação completa da figura, mas não da lista de figuras. Como conseguir isso?
Este é o exemplo de script:
\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}
Responder1
o comando caption possui uma entrada opcional, que é mostrada na lista de figuras/tabelas/etc.: \caption[Short title for lof]{Long title for document}
Seu documento ficaria assim:
\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}