سلام،
پکیج morefloats فقط تا 256 محیط شناور را پشتیبانی میکند.
در ضمن میتوانید از پکیج extrafloats استفاده کنید. مانند:
\documentclass{article}
\makeatletter
\mathchardef\float@count=32767
\def\extrafloats#1{%
\ifnum#1>\z@
\count@\numexpr\float@count-1\relax
\mathchardef\float@count\count@
\expandafter\mathchardef\csname bx@\the\float@count\endcsname\float@count
\@cons\@freelist{\csname bx@\the\float@count\endcsname}%
\expandafter
\extrafloats\expandafter{\numexpr#1-1\relax}%
\fi}
\makeatletter
\extrafloats{500}
%\usepackage[maxfloats=100]{morefloats} not enough
\setcounter{totalnumber}{1}
\def\f{text text\par
\begin{figure}[t]\rule{1cm}{1cm}
\caption{fff}
\end{figure}}
\def\ff{\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f}
\begin{document}
\ff\ff\ff\ff\ff\ff
\ff\ff\ff\ff\ff\ff
\ff\ff\ff\ff\ff\ff
\end{document}