[Tex/LaTex] Using bibtex to cite an online pdf file

bibtex

I did

@misc{fundament,
  title = {Foundations for Category Theory},
  author = {Daniel Murfet}
  note  =  {\url{http://therisingsea.org/notes/FoundationsForCategoryTheory.pdf}},
  note = {Accessed: 5-3-2019}
}

and loaded hyperref in my LaTeX file. It gives this

this

error. I copied the code from here: How can I use BibTeX to cite a web page? so I don't think there are any typos.

Best Answer

Because you gave no complete minimal working example with bibliography (MWEB) I can not test my corrections for you. Please do it yourself and report the result.

You should add the missing comma after author and you should change http:// to https:// in your used url:

@misc{fundament,
  title = {Foundations for Category Theory},
  author = {Daniel Murfet},
  note  =  {\url{https://therisingsea.org/notes/FoundationsForCategoryTheory.pdf}},
  note = {Accessed: 5-3-2019},
}

The missing comma results in the error message you got.