
Hi, I cite SciPy in my Thesis and need to specify the authors and a year. This is what I have so far: @Misc{, title = {{SciPy}: Open source scientific tools for {Python}}, url = "http://www.scipy.org/" } The bibliography style I use (natbib) requires a year and author names. Any recommendations for these fields? FWIW, this is what I use for SWIG and Python: @Misc{, author = {Guido van Rossum and others}, title = {The {Python} programming language}, year = {1991--}, url = "http://www.python.org/" } @Misc{, author = {David Beazley and others}, title = {{SWIG}: Simplified Wrapper and Interface Generator}, year = {1995--}, url = "http://www.swig.org" } Thanks. prabhu

Prabhu Ramachandran wrote:
Hi,
I cite SciPy in my Thesis and need to specify the authors and a year. This is what I have so far:
@Misc{, title = {{SciPy}: Open source scientific tools for {Python}}, url = "http://www.scipy.org/" }
The bibliography style I use (natbib) requires a year and author names. Any recommendations for these fields?
FWIW, this is what I use for SWIG and Python:
@Misc{, author = {Guido van Rossum and others}, title = {The {Python} programming language}, year = {1991--}, url = "http://www.python.org/" }
@Misc{, author = {David Beazley and others}, title = {{SWIG}: Simplified Wrapper and Interface Generator}, year = {1995--}, url = "http://www.swig.org" }
Thanks. prabhu
_______________________________________________ Scipy-dev mailing list Scipy-dev@scipy.net http://www.scipy.net/mailman/listinfo/scipy-dev
Taking guidance from the Maintainers page (http://www.scipy.org/development/maintainers.html) I would explicitly list Eric, Travis O., and Pearu with 'and others' as above. For a date, I think 2001-- should do it, e.g.: @Misc{, author = {Eric Jones, Travis Oliphant, Pearu Peterson and others}, title = {{SciPy}: Open source scientific tools for {Python}}, year = {2001--}, url = "http://www.scipy.org/" } Granted, I'm no authority, but I noticed nobody else was fielding this one. Let's consider this the standard if this doesn't incite any negative response, and I'll make an insightful note bout citing SciPy on the scipy.org site ;-) Regards, Travis

"TNV" == Travis N Vaught <travis@enthought.com> writes:
[...] TNV> @Misc{, TNV> author = {Eric Jones, Travis Oliphant, Pearu Peterson and TNV> others}, title = {{SciPy}: Open source scientific tools for TNV> {Python}}, year = {2001--}, url = "http://www.scipy.org/" TNV> } TNV> Granted, I'm no authority, but I noticed nobody else was TNV> fielding this one. Let's consider this the standard if this TNV> doesn't incite any negative response, and I'll make an TNV> insightful note bout citing SciPy on the scipy.org site ;-) Thanks! The entry should then read: @Misc{, author = {Eric Jones and Travis Oliphant and Pearu Peterson and others}, title = {{SciPy}: Open source scientific tools for {Python}}, year = {2001--}, url = "http://www.scipy.org/" } The difference being that the author names in BibTeX are separated by 'and' and not ','. Thanks again! cheers, prabhu
participants (2)
-
Prabhu Ramachandran
-
Travis N. Vaught