I'ld like to have the following tables joined with a unique frame width:
Code: Select all
\documentclass[a4paper,11pt] {article}
\usepackage [latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{amsmath}
%-----------------
\usepackage{supertabular}
\begin{document}
\begin{center}
\begin{supertabular}{|c c c c c c c|}
\hline
\textbf{Times} & & \textbf{RAAN} & & & \textbf{Dec} & \\
\hline
& |$\;H$ & $M$ & $S$ & | $\;\,\circ$ & $\prime$ & $\prime \prime$ \\
\hline
\hline
11:40:28 & | 00 & 03 & 45.58 & | 18 & 40 & 03.78 \\
11:48:28 & | 03 & 00 & 06.18 & | 35 & 39 & 53.07 \\
11:52:28 & | 04 & 31 & 32.80 & | 36 & 59 & 47.70 \\
\hline
\end{supertabular}
%-----------------------------------------
\begin{supertabular}{|l l |}
\hline
\textbf{Date} & \textbf{Site Geodetic Coords} \\
\hline
Aug.20,2012 | & $\lambda=-110^\circ \qquad \phi=40^\circ \qquad H=2000\;m$\\
\hline
\end{supertabular}
\end{center}
\end{document}
What I need is red marked in the att'd screenshot; thanks in advance