I have been looking at a few posts... namely How to force a table into a page width, but still could not get my table to show up properly across the page width.
Can you help me get my tables on both pages to show up centered across the page although beyond margins?
Here is the code that I have so far:
\documentclass[10pt,openany]{book}
\usepackage{calc}
\usepackage[left=1.5cm, right=1.5cm, bindingoffset=1.5cm, headheight=30pt, top={120pt+10mm}]{geometry}
\usepackage{graphicx, rotating, ltablex, dcolumn, booktabs}
\usepackage[english]{babel}
\usepackage[usenames,dvipsnames,svgnames,table,xcdraw]{xcolor}
\usepackage{array}
\usepackage{colortbl}
\usepackage{tabularx}
\usepackage{multicol}
\definecolor{mybluei}{RGB}{0,173,239}
\definecolor{myblueii}{RGB}{63,200,244}
\definecolor{myblueiii}{RGB}{199,234,253}
\begin{document}
\noindent
\begin{table}[htbt]
\centering
\caption{My caption}
\label{my-label}
\rowcolors{2}{myblueiii}{white}
\begin{tabular}{cccccccccc}
\rowcolor{myblueii!50}
\hline
\textbf{Model} & \textbf{NUMUORS} & \textbf{NUMUANDS} & \textbf{TOTOTORS} & \textbf{TOTOPANDS} & \textbf{VG} & \textbf{NLOGIC} & \textbf{LOC} & \textbf{ELOC} & \textbf{} \\ \hline
1 & -0.0516 & 0.0314 & -0.0027 & \cellcolor[HTML]{9B9B9B} & -0.0372 & 0.2119 & 0.0018 & 0.005 & -0.3091 \\
2 & -0.0482 & 0.0336 & -0.0021 & \cellcolor[HTML]{9B9B9B} & -0.0337 & 0.2088 & 0.0019 & \cellcolor[HTML]{9B9B9B} & -0.3255 \\
3 & -0.0517 & 0.0341 & -0.0026 & \cellcolor[HTML]{9B9B9B} & -0.0372 & 0.2118 & 0.0018 & 0.005 & -0.309 \\
4 & & & & \cellcolor[HTML]{9B9B9B} & & & & & \\
5 & -0.0516 & 0.0341 & -0.0027 & \cellcolor[HTML]{9B9B9B} & -0.0372 & 0.2119 & 0.0018 & 0.005 & -0.3091 \\
6 & -0.0482 & 0.0336 & -0.0021 & \cellcolor[HTML]{9B9B9B} & -0.0337 & 0.2088 & 0.0019 & \cellcolor[HTML]{9B9B9B} & -0.3255 \\
7 & -0.0517 & 0.0341 & -0.0026 & \cellcolor[HTML]{9B9B9B} & -0.0372 & 0.2118 & 0.0018 & -0.309 & -0.309 \\
8 & & & & \cellcolor[HTML]{9B9B9B} & & & & &
\end{tabular}
\end{table}
\newpage
\begin{table}[htbt]
\centering
\caption{My caption}
\label{my-label}
\rowcolors{2}{myblueiii}{white}
\begin{tabular}{cccccccccc}
\rowcolor{myblueii!50}
\hline
\textbf{Model} & \textbf{NUMUORS} & \textbf{NUMUANDS} & \textbf{TOTOTORS} & \textbf{TOTOPANDS} & \textbf{VG} & \textbf{NLOGIC} & \textbf{LOC} & \textbf{ELOC} & \textbf{} \\ \hline
1 & -0.0516 & 0.0314 & -0.0027 & \cellcolor[HTML]{9B9B9B} & -0.0372 & 0.2119 & 0.0018 & 0.005 & -0.3091 \\
2 & -0.0482 & 0.0336 & -0.0021 & \cellcolor[HTML]{9B9B9B} & -0.0337 & 0.2088 & 0.0019 & \cellcolor[HTML]{9B9B9B} & -0.3255 \\
3 & -0.0517 & 0.0341 & -0.0026 & \cellcolor[HTML]{9B9B9B} & -0.0372 & 0.2118 & 0.0018 & 0.005 & -0.309 \\
4 & & & & \cellcolor[HTML]{9B9B9B} & & & & & \\
5 & -0.0516 & 0.0341 & -0.0027 & \cellcolor[HTML]{9B9B9B} & -0.0372 & 0.2119 & 0.0018 & 0.005 & -0.3091 \\
6 & -0.0482 & 0.0336 & -0.0021 & \cellcolor[HTML]{9B9B9B} & -0.0337 & 0.2088 & 0.0019 & \cellcolor[HTML]{9B9B9B} & -0.3255 \\
7 & -0.0517 & 0.0341 & -0.0026 & \cellcolor[HTML]{9B9B9B} & -0.0372 & 0.2118 & 0.0018 & -0.309 & -0.309 \\
8 & & & & \cellcolor[HTML]{9B9B9B} & & & & &
\end{tabular}
\end{table}
\end{document}
First table:
Second table:




tabularenvironment to show up in landscape mode on a separate page, just encase it in asidewaystableenvironment of its own. (I didn't do this in my answer as the contents of the twotabularenvironments you posted (though not their screenshots) appeared to be identical.) – Mico Feb 15 '17 at 18:01