I'm writing a lab in two table format. I'm trying to add a table that's wider than \textwidth, and would like for it to spill onto both margins equally. What do I have to do? So far I have this:
\centering
\begin{tabular}{|| c | c || c | c || c | c || c | c ||}
\hline
\multicolumn{2}{||c||}{Trial 1} & \multicolumn{2}{c||}{Trial 2} & \multicolumn{2}{c||}{Trial 3} & \multicolumn{2}{c||}{Trial 4}\\
\hline
Distance (m) & Force (N) & Distance (m) & Force (N) & Distance (m) & Force (N) & Distance (m) & Force (N) \\
\hline
1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 \\
1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 \\
1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 \\
1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 \\
1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 \\
1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 \\
1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 \\
1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 \\
\hline
\end{tabular}
\caption{Force and Distance Data for Trials I-IV}
\label{tab:1}
\end{table*}```


