Graphics, Figures & Tableslistoffigures, can I change ?

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
marcoesteves
Posts: 18
Joined: Tue Jun 09, 2009 3:33 pm

listoffigures, can I change ?

Post by marcoesteves »

Hello, I've got this code

Code: Select all

\includegraphics[scale=0.8,bb=35.46 36.53 493.25 402]{grafico1.pdf}
\caption{Quantidade final de produtos de consumo para diferentes parametrizações
\\pc\_e -Quantidade de produtos de consumo na posse de produtores de bens de equipamento
\\pc\_c -Quantidade de produtos de consumo na posse de produtores de bens de consumo}
I need use this caption in my figure, but I don't wanna have this full caption at listoffigures.
Is there a way to manipulate this? Choose which caption I want to appear?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Juanjo
Posts: 657
Joined: Sat Jan 27, 2007 12:46 am

listoffigures, can I change ?

Post by Juanjo »

Use the optional argument of \caption:

Code: Select all

\caption[text to the list of floats]{text which appears together with the float}
The CTAN lion is an artwork by Duane Bibby. Courtesy of www.ctan.org.
marcoesteves
Posts: 18
Joined: Tue Jun 09, 2009 3:33 pm

Re: listoffigures, can I change ?

Post by marcoesteves »

Thank you!
Post Reply