Tabular: title above and caption below?
Use default text for the second "caption". However,you shouldn't use the table environment, if you do not want to float the tabular. Use a minipage instead and also tabularx
in this case:
\documentclass[a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{tabularx,ragged2e,booktabs,caption}
\newcolumntype{C}[1]{>{\Centering}m{#1}}
\renewcommand\tabularxcolumn[1]{C{#1}}
\begin{document}
\begin{minipage}{\linewidth}
\centering
\captionof{table}{Table Title} \label{tab:title}
\begin{tabular}{ C{1.25in} C{.85in} *4{C{.75in}}}\toprule[1.5pt]
\bf Variable Name & \bf Regression 1 & \bf Mean & \bf Std. Dev & \bf Min & \bf Max\\\midrule
text & text & text & text & text &text\\
\bottomrule[1.25pt]
\end {tabular}\par
\bigskip
Should be a caption
\end{minipage}
\bigskip
\begin{minipage}{\linewidth}
\centering
\captionof{table}{Table Title} \label{tab:title2}
\begin{tabularx}{\linewidth}{@{} C{1in} C{.85in} *4X @{}}\toprule[1.5pt]
\bf Variable Name & \bf Regression 1 & \bf Mean & \bf Std. Dev & \bf Min & \bf Max\\\midrule
text & text & text & text & text &text\\
\bottomrule[1.25pt]
\end {tabularx}\par
\bigskip
Should be a caption
\end{minipage}
\end{document}
You can do this with the caption
package. It provides a \caption*
command that makes a caption without a number or entry into the List of Tables.
\begin{table}
\caption{Table Title}
\begin{tabular}
...
\end{tabular}
\\[10pt]
\caption*{The caption without a number}
\end{table}
You can simply add text within the table environment to make it appear as a caption, like so:
\begin {table}[H]
\caption {Table Title} \label{tab:title}
\begin{center}
\begin{tabular}{ >{\centering\arraybackslash}m{1.25in} >{\centering\arraybackslash}m{.85in} >{\centering\arraybackslash}m{.75in} >{\centering\arraybackslash}m{.75in} >{\centering\arraybackslash}m{.75in} >{\centering\arraybackslash}m{.75in}}
\toprule[1.5pt]
{\bf Variable Name} & {\bf Regression 1} & {\bf Mean} & {\bf Std. Dev} & {\bf Min} & {\bf Max}\\
\midrule
text & text & text & text & text &text\\
\bottomrule[1.25pt]
\end {tabular}
\\[1.5] %You can adjust how far below the table the text should appear
Is just like a caption
\end{center}
\end {table}