Ask Your Question
3

Citing Sage

asked 2011-02-27 15:26:49 +0200

yomcat gravatar image

updated 2011-05-12 16:47:00 +0200

Kelvin Li gravatar image

How do I cite Sage? Is there a BibTeX available?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
6

answered 2011-02-27 15:38:12 +0200

niles gravatar image

There's a note about citing Sage on the Publications Citing Sage page. It links to the Publications using SAGE wiki page, which has the following:

If you use Sage in a book, paper, website, etc., please contact us and reference Sage as follows:

William A. Stein et al. Sage Mathematics Software (Version x.y.z), The Sage Development Team, YYYY, http://www.sagemath.org.

where you should change x.y.z to the exact version number you used for your publication. Also change YYYY to the year that reflects the version of Sage you used for the publication. To reference Sage using BibTeX, use:

@manual{sage,
  Key          = {Sage},
  Author       = {W.\thinspace{}A. Stein and others},
  Organization = {The Sage Development Team},
  Title        = {{S}age {M}athematics {S}oftware ({V}ersion x.y.z)},
  note         = {{\tt http://www.sagemath.org}},
  Year         = {YYYY},
}

To reference Sage using TeX, use:

\newcommand{\etalchar}[1]{$^{#1}$}
\bibitem[S{\etalchar{+}}09]{sage}
W.\thinspace{}A. Stein et~al., \emph{{S}age {M}athematics {S}oftware
({V}ersion x.y.z)}, The Sage Development Team, YYYY, {\tt
http://www.sagemath.org}.

Also, be sure to find out what components of Sage, e.g., NumPy, PARI, GAP, that your calculation uses, and properly attribute those systems (for example, ask on sage-devel). Similarly, consider finding out who wrote the Sage code you're using and acknowledge them explicitly as well.

edit flag offensive delete link more

Comments

2

Re the last paragraph: if you do "sage: from sage.misc.citation import get_systems" and then do "sage: get_systems('integrate(x^2, x)')", it should tell you what components of Sage are used for that particular integration.

John Palmieri gravatar imageJohn Palmieri ( 2011-02-28 15:50:17 +0200 )edit

I didn't know about that -- thanks!

niles gravatar imageniles ( 2011-02-28 16:53:05 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2011-02-27 15:26:49 +0200

Seen: 3,668 times

Last updated: Feb 27 '11

Related questions