由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
TeX版 - How to remove a figure from the list of figures?
相关主题
请教两个插图的问题index label wrong for figure
求教一个tex中插入eps图片的问题list of figure问题
怎么总是说reference找不到?Journal of Applied Physics投稿问题
请教关于subfigure的问题新手请问插图问题
how to add the description under the figure怎样在figure caption里引用
latex图表问题---急一个关于\ref的问题
很多figure怎么include?如何去掉这些Fig about here
图和文本要求分开,文本中怎么refer图呢?Table of Contents怎么包含公式
相关话题的讨论汇总
话题: figure话题: figures话题: caption话题: remove话题: list
进入TeX版参与讨论
1 (共1页)
N**D
发帖数: 10322
1
Don't want one of them. How to remove it?
Thanks!
b*********n
发帖数: 173
2
Why not include in the List of Figures if you have the figure in the text?
Don't have a solution for your specific problem. As you may know, you may
consider using a short caption:
\caption[short caption]{long caption}
b*********n
发帖数: 173
3
Here is the solution:
Open the x.lof file. Delete the line that includes the figure to be omitted
in the List of Figures.
For Example, if Figure 4.1 is the one to be deleted, locate the following
line in the lof file, and delete it. Rerun the latex file using PDF Latex (
NOT PDF TEXify).
\contentsline {figure}{\numberline {4.1}{\ignorespaces This is the caption
of the figure to be deleted.}}{86}{figure.4.1}
b*********n
发帖数: 173
4
The same is true for TOC and lot files.
N**D
发帖数: 10322
5
thanks a lot! I think this should be the only solution.

omitted

【在 b*********n 的大作中提到】
: Here is the solution:
: Open the x.lof file. Delete the line that includes the figure to be omitted
: in the List of Figures.
: For Example, if Figure 4.1 is the one to be deleted, locate the following
: line in the lof file, and delete it. Rerun the latex file using PDF Latex (
: NOT PDF TEXify).
: \contentsline {figure}{\numberline {4.1}{\ignorespaces This is the caption
: of the figure to be deleted.}}{86}{figure.4.1}

T*******n
发帖数: 493
6
\documentclass{article}
\begin{document}
\listoffigures
\clearpage
\begin{figure}
\centering\fbox{123}
\caption{One two three.}
\end{figure}
\begin{figure}
\centering\fbox{456}
\addtocontents{lof}{\string\iffalse}
\caption{Four five six.}
\addtocontents{lof}{\string\fi}
\end{figure}
\begin{figure}
\centering\fbox{789}
\caption{Seven eight nine.}
\end{figure}
\end{document}

【在 N**D 的大作中提到】
: Don't want one of them. How to remove it?
: Thanks!

N**D
发帖数: 10322
7
Thanks a lot! You are really an expert!

【在 T*******n 的大作中提到】
: \documentclass{article}
: \begin{document}
: \listoffigures
: \clearpage
: \begin{figure}
: \centering\fbox{123}
: \caption{One two three.}
: \end{figure}
: \begin{figure}
: \centering\fbox{456}

1 (共1页)
进入TeX版参与讨论
相关主题
Table of Contents怎么包含公式how to add the description under the figure
怎样保证figure上下有至少三行空白行?latex图表问题---急
如何把figure的caption放在下一页?很多figure怎么include?
[合集] Latex 插入figure的一个问题图和文本要求分开,文本中怎么refer图呢?
请教两个插图的问题index label wrong for figure
求教一个tex中插入eps图片的问题list of figure问题
怎么总是说reference找不到?Journal of Applied Physics投稿问题
请教关于subfigure的问题新手请问插图问题
相关话题的讨论汇总
话题: figure话题: figures话题: caption话题: remove话题: list