To get table of figures, I have used
Code: Select all
\listoffigures
Code: Select all
\usepackage[breaklinks=true]{hyperref}
Code: Select all
\listoffigures
Code: Select all
\usepackage[breaklinks=true]{hyperref}
NEW: TikZ book now 40% off at Amazon.com for a short time.
\caption
would provide the means for that:Code: Select all
\caption[this goes in the LoF]{this goes in the caption}
I can tell you if you provide apallav wrote:What to do?
Code: Select all
%% Template article for Elsevier's document class `elsarticle'
%% with numbered style bibliographic references
\documentclass[final,3p,times,twocolumn]{elsarticle}
\usepackage{graphics}
\usepackage{epsfig}
\usepackage{graphicx,subfigure,amssymb,amsfonts,latexsym,amsmath,amsthm,enumerate}
\usepackage[colorlinks, bookmarks=true, breaklinks=true]{hyperref}
\hypersetup{colorlinks = true, linkcolor = blue, anchorcolor = blue, citecolor = blue, filecolor = red, urlcolor = red}
\usepackage{hypcap}
\usepackage[nodots]{numcompress}
\usepackage[labelformat=empty]{caption}
\usepackage{lineno}
\newtheorem{theorem}{Theorem}
\newtheorem{acknowledgment}[theorem]{Acknowledgment}
\newtheorem{algorithm}[theorem]{Algorithm}
\newtheorem{axiom}[theorem]{Axiom}
\newtheorem{case}[theorem]{Case}
\newtheorem{claim}[theorem]{Claim}
\newtheorem{conclusion}[theorem]{Conclusion}
\newtheorem{condition}[theorem]{Condition}
\newtheorem{conjecture}[theorem]{Conjecture}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{criterion}[theorem]{Criterion}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{example}[theorem]{Example}
\newtheorem{exercise}[theorem]{Exercise}
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{notation}[theorem]{Notation}
\newtheorem{problem}[theorem]{Problem}
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{remark}[theorem]{Remark}
\newtheorem{solution}[theorem]{Solution}
\newtheorem{summary}[theorem]{Summary}
\hypersetup{colorlinks = true, linkcolor = blue, anchorcolor = blue, citecolor = blue, filecolor = red, urlcolor = red}
\newcommand\mycaption[2]{\caption[#1]{#1.\ #2}}
\renewcommand\thesection{\arabic{section}.}
\renewcommand\thesubsection{\thesection\arabic{subsection}.}
\renewcommand\thesubsubsection{\thesubsection\arabic{subsubsection}.}
\renewcommand\theequation{\thesection\arabic{equation}}
\biboptions{comma,round,sort&compress}
\journal{Chaos}
\begin{document}
\begin{frontmatter}
\begin{abstract}
This paper is
\end{abstract}
\end{frontmatter}
kdsfhs sdgohjsdgoi dsg sdg hsdg hsdG hdgs
\begin{figure}[!htb]
\includegraphics[width=6cm,height=6cm]{n_b.eps}
\caption[To my family]{}
\end{figure}
\begin{figure}[ht]
\centering
\subfigure[]{
\includegraphics[height=2in,width=3in]{n_2.eps}
\label{fig:subfig1}
}
\subfigure[]{
\includegraphics[height=2in,width=3in]{n_1.eps}
\label{fig:subfig2}
}
\subfigure[]{
\includegraphics[height=2in,width=3in]{n_0.eps}
\label{fig:subfig3}
}
\subfigure[]{
\includegraphics[height=2in,width=3in]{nu.eps}
\label{fig:subfig4}
}
\caption[\scriptsize (Colour online) The long long long]{}
\label{fig:nullcline_1}
\end{figure}
\bibliography{bib-my}
\bibliographystyle{elsarticle-num}
\listoffigures
\end{document}
Code: Select all
\usepackage[labelformat=empty]{caption}
labelformat=simple
, for example.Code: Select all
% _this_ is an MWE!
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage[labelformat=simple]{caption}
\begin{document}
\begin{figure}[!htb]
\centering
\includegraphics[width=6cm,height=6cm]{mypic.eps}
\caption[To my family]{}
\end{figure}
\listoffigures
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.