Suppose I have the following article which I use endfloat package to push tables to the end. My question is; is there any way to suppress the [Table 2 about here] for table 2 and keep it for other table(s)?
\documentclass[12pt]{article}
\usepackage[nolists, tabhead, fighead]{endfloat}
\begin{document}
\section{Section} This is the start of a section:
\begin{table}[htp]
\caption{Table}
\centering
\begin{tabular}{|c|c|c|c|}
\hline
Test & Test & Test & Test\\
\hline
Test & Test & Test & Test\\
\hline
\end{tabular}
\end{table}
\begin{table}[htp]
\caption{Table}
\centering
\begin{tabular}{|c|c|c|c|}
\hline
Test & Test & Test & Test\\
\hline
Test & Test & Test & Test\\
\hline
\end{tabular}
\end{table}
\end{document}