Can the list of figure be embedded in the table of contents for the article class?
I tried a variation of the solution here but by replacing chapter with section and then tried using chapter. The only thing that appeared was the list of figures.
To be more clear, I would like for my figures to be combined with the table of contents not a link to the figure sections; that is, if figure 1 is in section 1, the table of contents will look like
1 something
figure 1 caption
Figures are setup as
\begin{figure}
\subfloat[]{}
...
\end{figure}
So this is my setup:
\documentclass[11pt]{article}
\usepackage[usenames, dvipsnames, svgnames, table]{xcolor}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{eucal}
\usepackage{pxfonts}
\usepackage{setspace}
\usepackage{enumerate}
\usepackage{amscd}
\usepackage{dsfont}
\usepackage{wasysym}
\usepackage{tikz}
\usepackage{tikz-qtree}
\usepackage{mathtools}
\usepackage{kurier}
\usepackage{pgfplots}
\usepackage{listings}
\usepackage{etoolbox}
\usepackage{tikz-3dplot}
\usepackage{float}
\usepackage{wrapfig}
\usepackage{multirow}
\usepackage{array}
\usepackage{tkz-fct}
\usepackage{graphicx}
\usepackage{datetime}
\usepackage[protrusion = true, expansion]{microtype}
\usepackage{marvosym}
\usepackage{starfont}
\usepackage{fixltx2e}
%\usepackage[nottoc]{tocbibind}
\usepackage{tocloft}
\usepackage{subfig}
%\usepackage{thmtools}
%\usepackage{amsthm}
\usepackage{hyperref}
\usepackage[margin = 0.75in]{geometry}
\usepackage{fancyhdr}
\usepackage[caption = false]{subfig}
\usepackage[all]{hypcap}
% Figures in TOC
\makeatletter
\renewcommand\ext@figure{toc}
\makeatother
\newlength\mylen
\renewcommand\cftfigpresnum{Figure~}
\settowidth\mylen{\bfseries\cftfigpresnum\cftfigaftersnum}
\addtolength\cftfignumwidth{\mylen}
\begin{document}
\cleardoublepage
\tableofcontents
\begin{figure}[H]
\centering
\begin{tabular}{cc}
\subfloat[\(L_1\)]{\includegraphics[width = 3.25in]{L1Contour}} &
\subfloat[\(L_2\)]{\includegraphics[width = 3.25in]{L2Contour}}\\
\subfloat[\(L_3\)]{\includegraphics[width = 3.25in]{L3Contour}} &
\subfloat[\(L_4\) and \(L_5\)]{\includegraphics[width = 3.25in]
{L4L5Contour}}
\end{tabular}
\caption[2-D Zero Velocity Surfaces]
{2-D zero velocity surfaces for the Earth-Moon Lagrange points.}
\label{fig:2dzerovelocitysurface}
\end{figure}
\end{document}

\usepackage[nottoc]{tocbibind}– egreg Jun 12 '13 at 23:06tocbibindis sufficient – egreg Jun 12 '13 at 23:09\tableofcontentswill then have the the sections and figures in their respective locations combined into one? I just tried this setup and it only produced the sections without the figures. – dustin Jun 12 '13 at 23:10