[Tex/LaTex] How to cite Mathematica in bibtex

bibtexciting

I want to cite mathematica and generate something like following-

Wolfram Research, Inc., Mathematica, Version 8.0, Champaign, IL (2010)

I tried @misc this way-

@MISC{ram2010,
author={Wolfram Research},
title={Mathematica 8.0},
journal={Wolfram Research Inc.},
address={Champaign, Illinios},
edition={8.0},
year={2010}
}

All I could generate was this one-
Wolfarm, R, Mathematica 8.0. 2010

Please help me to write proper command.

Best Answer

My suggestion is to use BibLaTeX. The BibLaTeX has a @software entry type (is similar to @misc), and a version field:

@software{math,
  author = {{Wolfram Research, Inc.}},
  title = {Mathematica 8.0},
  url = {https://www.wolfram.com},
  version = {0.8},
  date = {2010},
}
Related Question