I'm preparing an article for submission in a journal and it requires that all figures must be coded at the end of the TeX file and not inline. I've tried to use :
\usepackage[markers,figuresonly,nolists]{endfloat}
but it put all figures and tables at the end of the pdf file. I want to put only figures at the end like this : example So how to do so?
The MWE (generated by Lyx) is like this :
\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{graphicx}
\usepackage[markers,figuresonly,nolists]{endfloat}
\usepackage{babel}
\begin{document}
Some text here.
\begin{figure}
\begin{centering}
\includegraphics[scale=0.33]{dwt2}
\par\end{centering}
\caption{1-level DWT of the image of Peppers }
\end{figure}
\begin{table}[th]
\begin{centering}
\begin{tabular}{|c|c|c|c|c|}
\hline
100 & 100 & 100 & 100 & 100\tabularnewline
\hline
100 & 100 & 100 & 100 & 100\tabularnewline
\hline
\end{tabular}
\par\end{centering}
\caption{Comparison.}
\end{table}
\end{document}

\documentclass{...}and ending with\end{document}. – cfr Nov 06 '14 at 23:02.tex* file. – cfr Nov 06 '14 at 23:03\includegraphics{file1},\includegraphics{file2}and so on. Please observe that you needn't use floats. – Przemysław Scherwentke Nov 06 '14 at 23:36