I have a weird problem where an extra blank line is appearing in my Bibliography after a "misc" item that has a long URL in the "howpublished" field.
For example
Code: Select all
@misc{usnews_2011,
title = {National University Rankings},
author = {{U. S. News \& World Report}},
month = sep,
year = {2011},
howpublished = {Retrieved from http://colleges.usnews.rankingsandreviews.com/best-colleges/rankings/national-universities}
},
But
Code: Select all
@misc{usnews_2011,
title = {National University Rankings},
author = {{U. S. News \& World Report}},
month = sep,
year = {2011},
howpublished = {Retrieved from http://colleges.usnews.rankingsandreviews.com/best-colleges/rankings}
},
I'm using TeXshop 2.43 with BibTeX and
relevant headers:
Code: Select all
\usepackage[notocbib]{apacite}
\newcommand{\bibnodot}[1]{}
Code: Select all
\bibliographystyle{apacite}
\bibliography{dissrefs}
Thanks!