This is my first post here, so the TeX code may not appear as desired, but I'll do what I can to provide a MWE.
I want to be able to suppress the appearance of individual figures/tables in the list of figures/tables. There are several approaches out there, but none of them seem to work for me because I'm using a non-standard document class which does not allow the use of the caption package, or the longtable package (packages load OK, but do not function as expected, or, really, at all). However, I still need to have tables that span multiple pages, which I have enter code here done manually by defining where the page break should be as a new table, controlling float placement, and redefining how the figures are numbered (as well as resetting the counter). So, having done it manually, each table appears in the list of tables, but I want to explicitly suppress the appearance of the second part of that table, defined as its own table in this case. Also, I can't use the \caption* command because the tables must be numbered in the text (it's a thesis—lots of special formatting requirements).
So, the MWE (note that I am using a standard document class in MWE so that it's universally workable, but I cannot use the caption or longtable package) is below. How do I delete the second table from the List of Tables?
\documentclass[11pt]{book}
\usepackage{floatrow}
\floatsetup[table]{capposition=top}
\begin{document}
\listoftables
\newpage
\renewcommand{\thetable}{\arabic{chapter}.\arabic{table}}
\setcounter{table}{0}
\begin{table}
\begin{tabular}{ccc}
table & of & data \\
with & many & lines \\
\end{tabular}
\caption[LoT Caption for Example Table, part 1]{Caption that appears with Table, Part 1}
\end{table}
\renewcommand{\thetable}{\arabic{chapter}.\arabic{table}, \textit{continued}}
\setcounter{table}{0}
\clearpage
\begin{table}
\begin{tabular}{ccc}
part & 2 & of table \\
table & of & data \\
with & many & lines \\
\end{tabular}
\caption[LoT Caption for Example Table, part 2]{Caption that appears with Table, Part 2}
\end{table}
\end{document}
Note: I did find a workaround, which I have been using, but I would like something cleaner (less labor-intensive for each compilation). The workaround is to modify the file.lot file, deleting the lines that correspond to the tables I want to remove from the LoT. Since this changes the number of pages of the LoT, I then have to recompile, redelete the lines from file.lot, and recompile again. Making the file.lot read-only (as suggested by another user in another thread) prevents the page numbers from readjusting to the proper numbers after the change in the length of the LoT, so these lines have to be deleted from file.lot each time the document is compiled.
captionpackage, you shouldn't be usingfloatrowthat loads it. – egreg Mar 25 '13 at 22:59\captionsetup[table]{list=no}) doesn't actually modulate the listings that appear in the list of tables (but does compile without error messages). Possibly something strange with the class file? – Andrew Steiner Mar 26 '13 at 20:09