I wanted to combine these two tables. I want one table with three rows and five columns. The first row for pre-etch and 2nd row for post-etch. Five columns could be center, top,bottom, right and left. How should I do that. I have this at the moment.
\begin{table}
\centering
\renewcommand{\arraystretch}{1.3}
\begin{minipage}[b]{0.33\linewidth}\centering
\caption{Measurement of oxide thickness for blank wafer before etch (pre etch)} \label{tab:1}
\label{tab:fonts}
\begin{tabular}{|l|S[table-format=5.0,
table-space-text-post=\si{\angstrom}]<{\si{\angstrom}\ }|}
\hline
center & 5114 \\ \hline
top & 5236 \\ \hline
right & 5196 \\ \hline
bottom & 5156 \\ \hline
left & 5211 \\ \hline
\end{tabular}
\end{minipage}
\hfil
\begin{minipage}[b]{0.33\linewidth}\centering
\caption{Measurement of oxide thickness for blank wafer after etch (post etch)} \label{tab:2}
\label{tab:fonts}
\begin{tabular}{|l|S[table-format=5.0,
table-space-text-post=\si{\angstrom}]<{\si{\angstrom}\ }|}
\hline
center & 3088 \\ \hline
top & 3154 \\ \hline
right & 3133 \\ \hline
bottom & 3043 \\ \hline
left & 3112 \\ \hline
\end{tabular}
\end{minipage}
\end{table}

