I am writing an article which has a long table with many rows. I would like to divide this table for multiple pages but I can not change the captions of these tables like "Table 1: Blablabla" and for the second page "Table 1 Continued: Blablabla" and so on. My MWE and its output.
I want to remove "Continued" from pages after the first.
\documentclass{article}
\usepackage[left=2.5cm,top=2.5cm,right=2.5cm,bottom=2.5cm,bindingoffset=0.1cm]{geometry}
\usepackage[english]{babel}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{booktabs}
\usepackage[font=small,labelfont=bf]{caption}
\begin{document}
\begin{table}[!htb]
\centering
\caption {Some Members of the Suggested Estimator}
\label{Tab:1}
\smallskip
\begin{tabular}{c c c }
\toprule
A subset of $\overline{y}_{NH}$ & $\textbf{a}$ & $\textbf{b}$\\
\midrule
test1 & 1 & 0 \\
\midrule
test2 & 1 & 1 \\
\midrule
test3 & \newline 1 & \newline $\beta_{2} \left(x\right)$ \\
\bottomrule
\end{tabular}
\end{table}
\begin{table}[!htbp]
\centering
\caption* {\textbf{Table 1 Continued:} Blablabla}
\smallskip
\begin{tabular}{c c c }
\toprule
A subset of $\overline{y}_{NH}$ & $\textbf{a}$ & $\textbf{b}$\\
\midrule
test4 & $C_{x} $ & $\rho_{yx} $ \\
\midrule
test5 & $\rho _{yx} $ & $C_{x} $ \\
\midrule
test6 & $\rho _{yx} $ \\
\bottomrule
\end{tabular}
\end{table}
\end{document}

Can anyone help me about it?


longtable. Did you test it? – Marco Daniel May 20 '13 at 11:34Everything work perfectly fine BUT I do not want this "...continued" thing. Plus, I do not know how to remove it and change the caption.
– ARAT May 20 '13 at 11:54