I know that the recommended way to suppress messages such
Underfull \hbox (badness 10000) in paragraph at lines 23--26
is not to use \\ or \newline but instead other methods such as \medskip.
My problem is that in lines 23--26 there is an eqnarray and I separate equations using \\ (that seems to cause the above message) ... even though this message does not affect my work (the books is printed correctly) I am curious regarding its origin ... thanks a lot !!
Here is the code
\documentclass{article}
\usepackage{bm}
\begin{document}
\begin{eqnarray*}
\bm{A}=\bm{A}_{m\times n}=\left(\begin{tabular}{ccccccc}
$\bm{\alpha_{11}}$&$\alpha_{12}$&$\alpha_{13}$&$\dots$&$\alpha_{1j}$&$\dots$&$\alpha_{1n}$\\
$\alpha_{21}$&$\bm{\alpha_{22}}$&$\alpha_{23}$&$\dots$&$\alpha_{2j}$&$\dots$&$\alpha_{2n}$\\
$\alpha_{31}$&$\alpha_{32}$&$\bm{\alpha_{33}}$&$\dots$&$\alpha_{3j}$&$\dots$&$\alpha_{3n}$\\
$\vdots$&$\vdots$&$\vdots$&$\bm{\ddots}$&$\vdots$&$\ddots$&$\vdots$\\
$\alpha_{i1}$&$\alpha_{i2}$&$\alpha_{i3}$&$\ddots$&$\bm{\alpha_{ij}}$&$\ddots$&$\alpha_{in}$\\
$\vdots$&$\vdots$&$\vdots$&$\ddots$&$\vdots$&$\bm{\ddots}$&$\vdots$\\
$\alpha_{m1}$&$\alpha_{m2}$&$\alpha_{m3}$&$\dots$&$\alpha_{mj}$&$\dots$&$\bm{ \alpha_{mn}}$\\
\end{tabular}\right)
\end{eqnarray*}
\end{document}
it just prints an $n\times n$ array. The code extends from line 20 to line 30 and the message refers to the lines 23--26.

\\not//I assume. the\\in an eqnarray are unlikely to generate this message, please show a small complete document that shows the problem. Note thateqnarrayis deprecated and it is much better to usealignfrom the amsmath package, butalignrows similarly end with\\– David Carlisle Oct 01 '17 at 17:41\\after the environment as in\end{eqnarray}\\? – David Carlisle Oct 01 '17 at 17:53\documentclassto\end{document}into your question it will be impossible to guess what you did or how to fix your document not to have the warning. – David Carlisle Oct 01 '17 at 18:28\documentclassso it could be tested but it makes no warnings. The markup is rather odd, you should not be usingtabularhere butarrayfor math mode, but that is a separate issue. Please edit the question so the example makes the underfull box warning. – David Carlisle Oct 01 '17 at 20:02now i replaced these lines with the command \vspace{5cm} and the problem solved .. i confused by the log file since i have not much experience in its use and that's why i reached the above (erroneous) conclusion .... your help and interest is greatly appreciated :-)
– Athanasios Margaris Oct 01 '17 at 20:40