Somehow the doi in unbreakable.
That's why you have to help LaTeX (which justifies per default) out here. It doesn't but the whole “word” doi:10.1016/j.aap.2005.12.006 into a new line because it would produce an even worse underful paragraph.
My proposals:
Mimic the behaviour of url (macro: \doiurl{…})
doi:{\urlstyle{same}\href{http://dx.doi.org/10.1016/j.aap.2005.12.006}{\nolinkurl{10.1016/j.aap.2005.12.006}}}
doi: {\urlstyle… for comparison (macro: \doiurl[ ]{…})
- Make use of
\sloppy (which kind of produce the above mentioned “underfull paragraph”)
Insert a manual line-break (\\)
\\\doi{10.1016/j.aap.2005.12.006}
Note that the differences between (3) and (4) are not in the last line!
Code
\documentclass[12pt]{report}
\usepackage[margin=1.25in]{geometry}
\usepackage{hanging}
\usepackage{url,doi}
\newcommand{\doiurl}[2][]{doi:#1{\urlstyle{same}\href{http://dx.doi.org/#2}{\nolinkurl{#2}}}}
\begin{document}
\begin{hangparas}{.3in}{1}
Aguero-Valverde, J., \& Jovanis, P. P. (2006). Spatial analysis of fatal and injury crashes in Pennsylvania. \textit{Accident Analysis \& Prevention, 38}(3), 618-625. \doiurl{10.1016/j.aap.2005.12.006}
\end{hangparas}
\begin{hangparas}{.3in}{1}
Aguero-Valverde, J., \& Jovanis, P. P. (2006). Spatial analysis of fatal and injury crashes in Pennsylvania. \textit{Accident Analysis \& Prevention, 38}(3), 618-625. \doiurl[ ]{10.1016/j.aap.2005.12.006}
\end{hangparas}
\begin{hangparas}{.3in}{1}\sloppy
Aguero-Valverde, J., \& Jovanis, P. P. (2006). Spatial analysis of fatal and injury crashes in Pennsylvania. \textit{Accident Analysis \& Prevention, 38}(3), 618-625. \doi{10.1016/j.aap.2005.12.006}
\end{hangparas}
\begin{hangparas}{.3in}{1}
Aguero-Valverde, J., \& Jovanis, P. P. (2006). Spatial analysis of fatal and injury crashes in Pennsylvania. \textit{Accident Analysis \& Prevention, 38}(3), 618-625.\\\doi{10.1016/j.aap.2005.12.006}
\end{hangparas}
\begin{hangparas}{.3in}{1}
Buck, A. J., Blackstone, E. A., \& Hakim, S. (2009). A multivariate Poisson model of consumer choice in a multi-airport region. \textit{iBusiness, 1}(2). \doiurl{10.4236/ib.2009.12012}
\end{hangparas}
\begin{hangparas}{.3in}{1}
Buck, A. J., Blackstone, E. A., \& Hakim, S. (2009). A multivariate Poisson model of consumer choice in a multi-airport region. \textit{iBusiness, 1}(2). \doiurl[ ]{10.4236/ib.2009.12012}
\end{hangparas}
\begin{hangparas}{.3in}{1} \sloppy
Buck, A. J., Blackstone, E. A., \& Hakim, S. (2009). A multivariate Poisson model of consumer choice in a multi-airport region. \textit{iBusiness, 1}(2). \doi{10.4236/ib.2009.12012}
\end{hangparas}
\begin{hangparas}{.3in}{1}
Buck, A. J., Blackstone, E. A., \& Hakim, S. (2009). A multivariate Poisson model of consumer choice in a multi-airport region. \textit{iBusiness, 1}(2).\\\doi{10.4236/ib.2009.12012}
\end{hangparas}
\end{document}
Output
