I feel like I have to apologise for my first post here being a question, but I have been searching for an answer for a long time and have not yet been able to find one to my satisfaction. Hopefully you can help me

I am trying to create a table using multirow, and am trying to make it in keeping with the rest of my document.
My effort so far is as follows:

with the code:
Code: Select all
\begin{table}
\centering
\begin{tabular}{| l | c c c | c c c|}
& \multicolumn{3}{ |c| }{Prior LTP} & \multicolumn{3}{ c| }{Post LTP} \\ \hline \hline
Frequency & Capacitance & Loss & $\epsilon_r$ & Capacitance & Loss & $\epsilon_r$\\ \hline
0.1 & c&l&p&c&l&p\\
1 & c&l&p&c&l&p\\
10 & c&l&p&c&l&p\\
100 & c&l&p&c&l&p\\
\hline
\label{tab:stackperm}
\end{tabular}
\end{table}
Incidentally, this is my second attempt at the formatting of this table. For it to fit in exactly with the rest of my document, it should be formatted more along the lines of:

with the code:
Code: Select all
\begin{table}
\centering
\begin{tabular}{l | c c c | c c c}\hline\hline
& \multicolumn{3}{ |c| }{Prior LTP} & \multicolumn{3}{ c }{Post LTP} \\ \hline \hline
Frequency & Capacitance & Loss & $\epsilon_r$ & Capacitance & Loss & $\epsilon_r$\\ \hline
0.1 & c&l&p&c&l&p\\
1 & c&l&p&c&l&p\\
10 & c&l&p&c&l&p\\
100 & c&l&p&c&l&p\\
\hline
\label{tab:stackperm}
\end{tabular}
\end{table}
Cheers all
P.S. please ignore the fact that I haven't entered any useful data into my table as of yet!

Thanks again