I am using endfloat to move all my figures to the end of the document, adding this to my preamble:
\usepackage[lists,heads]{endfloat} %% Remove captions from the figure pages [EMAIL PROTECTED] \vskip\abovecaptionskip \hbox to \hsize{\hfil #1\hfil}% \vskip\belowcaptionskip} The result is almost perfect: <page> List of Figures 1 A summation of Mercer et al.'s ... 2 Assemblages of polyhedra... ... 11 The distribution of generations of ... </page> <page> Figures ---------------------- | | | | | | ---------------------- Figure 1 </page> However, I'm also using the subfig package to add captions to the sub figures within a float and at the moment these remain with the figure. Ie: <page> ---------------------- | | | | | | ---------------------- (a) \degree{90} branches are allowed... ---------------------- | | | | | | ---------------------- (b) \degree{90} branches are not allowed... Figure 11 </page> Moreover, these same sub figure captions *do not* appear on the List of Figures page. Any clues on what I need to do? I attach a minimal example of what I get currently. Angus
%% LyX 1.3 created this file. For more info, see http://www.lyx.org/. %% Do not edit unless you really know what you are doing. \documentclass[english]{article} \usepackage[T1]{fontenc} \usepackage[latin1]{inputenc} \usepackage{a4wide} \usepackage{amsmath} \usepackage{amssymb} \makeatletter %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands. \usepackage{lmodern} \usepackage[textstyle,amssymb]{SIunits} \usepackage{subfig} \usepackage[lists,heads]{endfloat} %% Remove captions from the figure pages [EMAIL PROTECTED] \vskip\abovecaptionskip \hbox to \hsize{\hfil #1\hfil}% \vskip\belowcaptionskip} \usepackage{babel} \makeatother \begin{document} \newcommand{\mydegree}[1]{#1\degree} \title{My title} \maketitle \section{Results} These results come in two parts\ldots{} \begin{figure} \begin{center}\subfloat[\label{cap:with 90}$\mydegree{90}$ branches are allowed. The fit to the numerical data has $a=92.5$, $\sigma=1.67$, $\mu=6.83$ and a reduced $\chi^{2}$ of $1.13$.]{% \framebox[12cm]{\ttfamily with90.fig \rule{0mm}{7cm}}% }\end{center} \begin{center}\subfloat[\label{cap:without 90}$\mydegree{90}$ branches are not allowed. The fit to the numerical data has $a=96.6$, $\sigma=2.10$, $\mu=6.84$ and a reduced $\chi^{2}$ of $0.67$.]{% \framebox[12cm]{\ttfamily without90.fig \rule{0mm}{7cm}}% }\end{center} \caption{The distribution of generations of branching to the terminal alveoli. A comparison of numerical predictions for $\lambda=0.5$ against the experimental data of Mercer and Crapo.\newline Numerical and experimental data are both fitted to a normal distribution $p(x)=\frac{a}{\sigma\sqrt{2\pi}}\exp\left(-\frac{1}{2}\left(\frac{x-\mu}{\sigma}\right)^{2}\right)$. The fit to the Mercer and Crapo data (their table~1) has $a=100.7$, $\sigma=2.69$, $\mu=7.49$ and a reduced $\chi^{2}$ of $1.24$.} \end{figure} \end{document}