Underfull \hbox maldad 10000 \textbf

Underfull \hbox maldad 10000 \textbf

Código simple (nuevo en LaTeX). Recibir estos errores:

Underfull \hbox (badness 10000) in paragraph at lines 13--14
Underfull \hbox (badness 10000) in paragraph at lines 15--26
Underfull \hbox (badness 10000) in paragraph at lines 15--26
Underfull \hbox (badness 10000) in paragraph at lines 15--26
Underfull \hbox (badness 10000) in paragraph at lines 27--28

Aquí está el código

\documentclass[11pt]{article}

\usepackage[top=1in, bottom=1in, left=1in, right=1in]{geometry}
\usepackage{verbatim}

\begin{document}

\title{Homework 1}
\author{Joshua Hazel}
\date{\today}
\maketitle

\textbf{2.3 Suppose that the values for a given set of data are grouped into intervals.  The intervals and corresponding frequencies are as follows:} \\ 

\indent
\begin{tabular}
{|l r|} \hline
age & frequency \\ \hline
1-5 & 200 \\
6-15 & 450 \\
16-20 & 300 \\
21-50 & 1500 \\
51-80 & 700 \\
81-110 & 44 \\ \hline
\end{tabular} \\ \\ \\

\textbf{Compute an \textit{approximate median} value for the data.}\\

My answer here.

\end{document}

Los números de línea apuntan a las 2 secciones donde usé \textbf y la otra apunta al inicio/final de la tabla.

¿Qué hay de malo en el código?

Respuesta1

Debe intentar evitar espacios explícitos dentro del documento, marcar la estructura del documento y luego organizar globalmente para que los elementos estructurales tengan el diseño correcto.

Algo como esto podría estar más cerca (y no produce advertencias)

ingrese la descripción de la imagen aquí

\documentclass[11pt]{article}

\usepackage[margin=1in]{geometry}
\usepackage{verbatim}
\usepackage{parskip}
\setlength\parskip{\baselineskip}
\setlength\parindent{0pt}

\begin{document}

\title{Homework 1}
\author{Joshua Hazel}
\date{\today}
\maketitle
\setcounter{section}{2}
\setcounter{subsection}{2}

\subsection{Suppose that the values for a given set of data are grouped into intervals.  The intervals and corresponding frequencies are as follows:}


\begin{tabular}
{|l r|} \hline
age & frequency \\ \hline
1-5 & 200 \\
6-15 & 450 \\
16-20 & 300 \\
21-50 & 1500 \\
51-80 & 700 \\
81-110 & 44 \\ \hline
\end{tabular}

\textbf{Compute an \textit{approximate median} value for the data.}

My answer here.

\end{document}

información relacionada