alvations / pywsd

Python Implementations of Word Sense Disambiguation (WSD) Technologies.
MIT License
744 stars 132 forks source link

typo in bibtex citation #36

Closed tastyminerals closed 7 years ago

tastyminerals commented 7 years ago

Even though it compiles I think there is a superfluous curly bracke in your pywsd citation. The below version works only with \usepackage[square,sort,comma,numbers]{natbib} (but it turns all your citations into [digit] format which looks really bad)

@misc{pywsd14,
author =   {Liling Tan},
title =    {Pywsd: Python Implementations of Word Sense Disambiguation (WSD) Technologies [software]},
howpublished = {https://github.com/alvations/pywsd}},
year = {2014}
} 

Also, an alternative version that does not break the compilation in case \usepackage{natbib} used.

@misc{pywsd14,
    author = {Liling Tan},
    title = {{Pywsd: Python Implementations of Word Sense Disambiguation (WSD) Technologies [software]}},
    howpublished = "\url{https://github.com/alvations/pywsd}",
    year = {2014},
    note = "[Online; accessed 17-July-2016]"
}
alvations commented 7 years ago

Thanks @tastyminerals for spotting that! Removed it =)