I have created a table that is too wide for the margins. What I tried to do was implement \hspace*{-50pt} before \begin{tabular} and \hspace{-50pt} after \end{tabluar}. Which gets rid of the overfull \hbox message but the table is right to the edge of the paper. Is there way to scale it down so it centers and is not at the edge of the paper? Here is the MWE:
\documentclass[11pt,twoside,openright]{memoir}
\usepackage[size=pocket,trim,bleed]{createspace}
%\usepackage[paperwidth=4.25in, paperheight=6.875in,bindingoffset=.75in]{geometry}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{tgtermes}
\usepackage{mathpazo}
\usepackage[protrusion=true,expansion=true]{microtype}
\usepackage{lipsum}
%\usepackage{type1cm}
%\usepackage{lettrine}
%\checkandfixthelayout
% See the ``Memoir customise'' template for some common customisations
% Don't forget to read the Memoir manual: memman.pdf
%\title{TITLE OF BOOK}
%\author{NAME OF AUTHOR}
%\date{} % Delete this line to display the current date
%% BEGIN TITLE
\makeatletter
\def\maketitle{%
\null
\thispagestyle{empty}%
\vfill
\begin{center}\leavevmode
\normalfont
{\LARGE\raggedleft \@author\par}%
\hrulefill\par
{\huge\raggedright \@title\par}%
\vskip 1cm
% {\Large \@date\par}%
\end{center}%
\vfill
\null
\cleardoublepage
}
\makeatother
\author{AUTHOR}
%\author{NAME OF AUTHOR}
\title{TITLE}
%\date{}
%%% BEGIN DOCUMENT
\begin{document}
\pdftitle{TITLE}
\pdfauthor{AUTHOR}
\pdfsubject{SUBJECT}
\chapterstyle{bianchi}
\let\cleardoublepage\clearpage
\maketitle
\frontmatter
\null\vfill
\begin{flushleft}
Copyright \copyright
%\textit{TITLE}
All rights reserved.
ISBN:
ISBN--13:
\bigskip
\end{flushleft}
\let\cleardoublepage\clearpage
\clearpage
\tableofcontents
\chapter{[Chapter name]}
\begin{figure}
\hspace*{-50pt}
\begin{tabular}{l l l l }
Open & $512$ & P/E & $21.0$ \\
Range & $500-598$ & Mkt.Cap & $100.5$B\\
52 Week high/low & $456-612$ & \# of shares & $256$m\\
VOL/Avg. & 355458760/2914515 & Beta & $1.02$ \\
Ask & $510.25$ & Inst. Own & $45$\% \\
Div/Yield & - & Bid & $511.25$ \\
& & EPS & 25.07
\end{tabular}
\hspace{-50pt}
\caption{TEXT}
\end{figure}
\mainmatter
\sloppy
%Input all of the chapter here
\backmatter
\end{document}
\small? – David Carlisle Mar 13 at 15:14siunitx, (2) does this indicate a range?$500-598$, if so write it as 500--598, minus is the wrong dash in this case. – daleif Mar 13 at 15:54\tinyand\smallthere is\footnotesize. – jon Mar 13 at 17:14