For example, is it possible to justify the first row of a table differently from the rest? Maybe there is a way to combine two tables to look like one? MWE:
\documentclass{article}
\begin{document}
\begin{table}
\begin{tabular}{| c | c | c | c |}
\hline
& \textbf{S1} & \textbf{S2} & \textbf{S3} \\
\hline
\textbf{D1} & 4217 & 5821 & 1102 \\
\textbf{D2} & 3679 & 5089 & 991 \\
\textbf{D3} & 2589 & 3301 & 604 \\
\textbf{D4} & 1418 & 1722 & 294 \\
\hline
\end{tabular}
\end{table}
\end{document}




tabularenvironment you have in mind. Without such information, it's going to be very difficult to provide more specific suggestions. – Mico Feb 22 '12 at 03:16