I'm running into some formatting issues. Currently, my code looks like:
\documentclass[titlepage]{article}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{wrapfig}
\usepackage{booktabs}
\usepackage{color}
% Adjust margins
\addtolength{\oddsidemargin}{-.75in}
\addtolength{\evensidemargin}{-.75in}
\addtolength{\textwidth}{1.5in}
\addtolength{\topmargin}{-.75in}
\addtolength{\textheight}{1.5in}
\begin{document}
\begin{wrapfigure}{L}{.2\textwidth}
\rule{1cm}{5cm}
\end{wrapfigure}
\quad Figure~\ref{fig:measTool} is a zoomed in version of the measurement toolbar, the other primary toolbar that
will be used during simulations. Here, instead of picking components like resistors and operational amplifiers, you
will find primarily measurement tools.
\begin{table}[h]
\centering
\caption{Descriptions of Measurement Toolbar Options}
\label{tab:measToolTab}
\begin{tabular}{clc} \toprule
Color & Label & Description \\ \midrule
\color{red} Red & \color{red} Multimeter & Primarily used to measure DC current, voltage, \\
& & and resistance. \\ \bottomrule
\end{tabular}
\end{table}
\end{document}
As can be seen, the table is not centered beneath the text, but is centered with the entire page. I was wondering how to shift the table so that it would be centered with the text?


\rule{1cm}{5cm}will create a black rectangle that is 1cm wide and 5cm high, can be used as a stand-in for the image. Alternatively, use\includegraphics[width=1cm,height=5cm]{example-image}, adjusting the dimensions to correspond to your image. (example-imageis an image file included with a package calledmwe, that is included in TeX Live and MikTeX, so most people have it.) – Torbjørn T. Dec 21 '17 at 00:51\rule(or more precisely,\rule{"width"}{"height"}) is a rectangle with dimensions as inside the bracers – Cragfelt Dec 21 '17 at 00:51