How to cite NumPy in BibTex?
The Scipy citing page recommends:
Travis E, Oliphant. A guide to NumPy, USA: Trelgol Publishing, (2006).
Is it correct to use:
@Misc{numpy,
author = {Travis Oliphant},
title = {{NumPy}: A guide to {NumPy}},
year = {2006--},
howpublished = {USA: Trelgol Publishing},
url = "http://www.numpy.org/",
note = {[Online; accessed <today>]}
}
Or should I cite just SciPy?
Research Gate
On Research Gate, the citation suggested is:
@book{book,
author = {Oliphant, Travis},
year = {2006},
month = {01},
pages = {},
title = {Guide to NumPy}
}
Or cite as a book?
misc
, maybe usemanual
? – Richard Erickson Nov 28 '18 at 15:22Misc
entry has ahowpublished
field:How something strange has been published.
. I thought that the Online Manual could be on that field. – danieltakeshi Nov 28 '18 at 15:29books
ormanual
may be formatted differently thanmisc
. It depends upon your style file and where you are trying to publish. That venue's specific requirements may prefer one method over another. – Richard Erickson Nov 28 '18 at 16:17