GeneralBlack boxes in bibliography

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
brennon
Posts: 10
Joined: Tue May 25, 2010 1:17 pm

Black boxes in bibliography

Post by brennon »

I'm new to LaTeX, but have done my best to search the forums and elsewhere for an answer before posting...

I have black boxes cropping up at the end of two of my bibliography entries. I've attached a picture of an entry with the box, and one without. I can't see any difference between the entries in my .bib file. Here are those:

Code: Select all

@misc{_desktop_????,
	title = {Desktop gadgets (overview)},
	url = {http://windows.microsoft.com/en-us/windows7/Desktop-gadgets-overview},
	journal = {Microsoft Corporation},
	howpublished = {http://windows.microsoft.com/en-us/windows7/Desktop-gadgets-overview}
}

@misc{_apple_????,
	title = {Apple - Downloads - Dashboard},
	url = {http://www.apple.com/downloads/dashboard/},
	journal = {Apple},
	howpublished = {http://www.apple.com/downloads/dashboard/}
}
Attachments
biblio.png
biblio.png (31.66 KiB) Viewed 3443 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Black boxes in bibliography

Post by gmedina »

Hi

it seems that the draft class option is active. Check the line

Code: Select all

\documentclass[<options-list>]{<class>}
and see if draft appears as one of the options in <options-list>. If so, simply delete it or replace it with final.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
brennon
Posts: 10
Joined: Tue May 25, 2010 1:17 pm

Black boxes in bibliography

Post by brennon »

"draft" wasn't specified as an option, but commenting out this line fixed the issue:

Code: Select all

\overfullrule=5pt
Thanks!
Post Reply