I have a problem with the caption of LaTeX tables. Is there any way to edit the caption of my LaTeX tables so that not all captions start with “Table1”
Can I edit the second file into displaying “Table 2” somehow? My tables are not all in a single file but each table is coded in a different file but I suppose that should not be the problem
\caption{bla}
\label{tab:xyz}
\end{table}
\end{document}
In case there is no simpel solution hwo could I integrate these tables
\documentclass[12pt]{article}
\usepackage{multirow}
\usepackage[landscape]{geometry}
\begin{document}
\begin{table}[ht]
\begin{center}
\begin{tabular}{ |l|l|l|l|l|}
\hline
% TABLE content
\hline
\end{tabular}
\end{center}
\caption{bla}
\end{table}
\end{document}
\documentclass[12pt]{article}
\usepackage{multirow}
\usepackage[landscape]{geometry}
\usepackage{booktabs}
\newcommand{\ra}[1]{\renewcommand{\arraystretch}{#1}}
\let\centering\relax
\begin{document}
\begin{table*}\centering
\ra{1.3}
% TABLE CONTENT
\bottomrule
\end{tabular}
\caption{bla2}
\end{table*}
\end{document}
\input(and the included files shouldn't have\documentclassand\begin{document}. – egreg Jan 28 '13 at 22:53\setcounter,\addtocounteror\stepcounter, depending on your case. For example, in the second document, you could use\setcounter{table}{1}in the preamble or at least before thetableenvironment. Can you describe your use-case? Maybe there is a simple one-document-multiple-tables solution that produces the same output, only needing you to split the resulting PDF. – Qrrbrbirlbel Jan 28 '13 at 23:36