Differences between revisions 39 and 40
Revision 39 as of 2019-04-15 08:15:22
Size: 2593
Editor: chapoton
Comment: details
Revision 40 as of 2020-01-19 21:30:50
Size: 2596
Editor: dimpase
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
== Technical/Scholarly Publications Citing SageMath == == Citing SageMath in Technical/Scholarly Publications ==

Citing SageMath in Technical/Scholarly Publications

If you use SageMath in a book, paper, website, etc., please contact us about details of the publication, e.g. where is it published, provide a link to your publication. Alternatively, send us a pull request.

Please reference SageMath as follows:

SageMath, the Sage Mathematics Software System (Version x.y.z),
   The Sage Developers, YYYY, https://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 SageMath you used for the publication.

BibTex

@manual{sagemath,
  Key          = {SageMath},
  Author       = {{The Sage Developers}},
  Title        = {{S}ageMath, the {S}age {M}athematics {S}oftware {S}ystem ({V}ersion x.y.z)},
  note         = {{\tt https://www.sagemath.org}},
  Year         = {YYYY},
}

AMSref

\bib{sagemath}{manual}{
      author={Developers, The~Sage},
       title={{S}agemath, the {S}age {M}athematics {S}oftware {S}ystem
  ({V}ersion x.y.z)},
        date={YYYY},
        note={{\tt https://www.sagemath.org}},
}

DOIs

Include them as doi = {dx.doi.org/...}

TeX

\newcommand{\etalchar}[1]{$^{#1}$}
\bibitem[S{\etalchar{+}}09]{sage}
\emph{{S}ageMath, the {S}age {M}athematics {S}oftware {S}ystem ({V}ersion
  x.y.z)}, The Sage Developers, YYYY, {\tt https://www.sagemath.org}.

Also, be sure to find out what components of SageMath, e.g., NumPy, PARI, GAP, that your calculation uses, and properly attribute those systems (for example, ask on sage-support). Also, you may use the get_systems method:

sage: from sage.misc.citation import get_systems
sage: get_systems("integrate(cos(x^2), x)")
['MPFI', 'ginac', 'GMP', 'Maxima']

Similarly, consider finding out who wrote the SageMath code that you are using and acknowledge them explicitly as well.

EndNote (RIS file)

sage.ris

Books and Articles mentioning SageMath

Please see https://www.sagemath.org/library-publications.html

Publications_using_SageMath (last edited 2020-10-07 11:21:00 by dimpase)