I have the following table
\documentclass[10pt,twocolumn,letterpaper]{article} \usepackage{graphicx} \usepackage{array} \newcolumntype{M}[1]{>{\centering\arraybackslash}m{#1}} \begin{document} \section{Results} \label{Sec:results} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Table %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \begin{table}[tb] \centering \tabcolsep = 0.01\textwidth %0.18cm \begin{tabular}{| m{0.17\textwidth} | M{0.1\textwidth} | M{0.1\textwidth}|} \hline \centering\textbf{Method} & \textbf{Input} & \textbf{Accuracy} \tabularnewline \hline 3DShapeNets & volumetric & 84.7\\ Voxnet & volumetric & 85.9\\ \hline PointNet & points & 89.2 \\ PointNet++ & points & 90.7 \\ Kd-network& points & 91.8 / 90.6 \\ \hline Ours & points & ? \\ \hline \end{tabular} \caption{Classification Accuracy on ModelNet40 dataset} \label{table:ClassificationAcc} \end{table} \begin{table}[tb] \centering \tabcolsep = 0.01\textwidth %0.18cm \begin{tabular}{|m{0.12\textwidth}|M{0.1\textwidth}|M{0.15\textwidth}|M{0.08\textwidth}|} \hline \centering\textbf{Method} & \textbf{ Data} & \textbf{Permutations} & \textbf{Points} \tabularnewline \hline PointNet & & &\\ PointNet++ & & &\\ Kd-Network & & &\\ \hline \end{tabular} \caption{Challenges summary } \label{table:ChallangeComp} \end{table} \subsection{Architecture Design Analysis} \label{SubSec:Arch_Dn_Analysis} \subsection{Visualizations} \label{SubSec:Vis} \end{document} I get a warning Overfull \hbox (... too wide) ... Why is this happening and how can I solve it ?

\documentclass{...}and ending with\end{document}instead of code snippets. How are we supposed to know how you defined the column typeM?Mtom, i cant reproduce your problem. without knowing your document preamble is not possible to help you. consider above comment.\documentclass[twocolumn]{article}then I do get an overfull warning, as the table is wider than a single column. And the solution is then obvious: make the columns of the table narrower. But it's not really clear what your setup is, so please elaborate.\hboxis too wide for the box. You can solve it by either reducing the stuff inside the box in question, or by increasing the box's size.