1
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{url}
\usepackage[top=1in, bottom=1in, left=1in, right=1in]{geometry}
\usepackage{verbatim}


\title{Annotated Bibliography}
\author{ffhjn}
\date{April 2017}

\begin{document}

\maketitle

\section{Aim}
amvfnurgii

\begin{thebibliography}{99}

\bibitem{Cornell University Library}
\url{http://guides.library.cornell.edu/annotatedbibliography}. Accessed on 18 April 2017.

\bibitem{USC Libraries}
\url{http://libguides.usc.edu/writingguide/annotatedbibliography}. Accessed on 18 April 2017.

\end{thebibliography}

\end{document}
gnikit
  • 459
amm
  • 21
  • 1
    Welcome to Tex.SE! Please provide a complete description of your error, not just the code. – gnikit Apr 18 '17 at 05:31
  • Also, from what I understand you are wondering why you are getting the BadBox message. You are using {99} while only using a single digit number of references, 2 in this case, but this should not prevent your .tex file from compiling. Look here to see what he arguments in thebibliography should be for your case specifically: https://tex.stackexchange.com/questions/198330/argument-in-thebibliography – gnikit Apr 18 '17 at 05:53

1 Answers1

2

the badness is a measure of how over stretched the line is. 4765 isn't impossibly bad, although it's not great.

enter image description here

As you can see the first "Accessed on 18" is stretched out.

With such small paragraphs with large unbreakable units there is not a lot you can do, you could just accept it stretches or set it ragged right:

enter image description here

\begin{thebibliography}{99}
\raggedright

\bibitem{Cornell University Library}
\url{http://guides.library.cornell.edu/annotatedbibliography}. Accessed on 18 April 2017.

\bibitem{USC Libraries}
\url{http://libguides.usc.edu/writingguide/annotatedbibliography}. Accessed on 18 April 2017.

\end{thebibliography}
David Carlisle
  • 757,742