So I'm trying to do a bibliography for my report on overleaf using LaTeX, and most of my sources are website that have URLs. I keep getting " Missing $ inserted. " I have used any "$" signs, so I'm not sure why I keep getting this error. Any help would be much appreciated thank you This is how I coded my sources
misc{website:Stanford,
author = {Stanford Center for Professional Development},
title = {CS221 - Artificial Intelligence Principles and Techniques},
month = {October},
year = {2016},
URL ={http://scpd.stanford.edu/search/publicCourseSearchDetails.do?method=load&courseId=11747},
}
@misc{website:CIPS2,
author = {CIPS},
title = {Computer Science Accredited Programs},
month = {October},
year = {2016},
URL ={http://www.cips.ca/ComputerScience},
}

&in the URL ofwebsite:Stanfordthis can be done by replacing&with\&(How to escape the & (ampersand) character in BibTeX?). You're also missing an@, it should be@misc. If this isn't helpful we may need you to provide a minimal working example (MWE) – Dai Bowen Oct 10 '16 at 20:47&would give an error but not about$the most likely cause of that error is_– David Carlisle Oct 10 '16 at 20:50\documentclass{...}and ending with\end{document}. A suggestion: Do us a favour and change your username to something more telling than "user1234". – Martin Schröder Oct 10 '16 at 21:00.bibentries you have shown look innocent enough (if processed with the right bibliography styles). Please consider constructing a full MWE that reproduces the problem for us. Ideally that would just be one block of code we can copy, paste and hit compile on that shows exactly the error you get. Do check if the errors are really the same, please. – moewe Oct 10 '16 at 22:06