我想引用 mathematica 并生成类似以下内容:
Wolfram Research, Inc.,Mathematica,版本 8.0,伊利诺斯州香槟市(2010)
我试过@misc
这种方法-
@MISC{ram2010,
author={Wolfram Research},
title={Mathematica 8.0},
journal={Wolfram Research Inc.},
address={Champaign, Illinios},
edition={8.0},
year={2010}
}
我能生成的只有这一个 - Wolfarm,R,Mathematica 8.0。2010
请帮我写出正确的命令。
答案1
我的建议是使用 BibLaTeX。BibLaTeX 有一个@software
条目类型(类似于@misc
),以及一个版本字段:
@software{math,
author = {{Wolfram Research, Inc.}},
title = {Mathematica 8.0},
url = {https://www.wolfram.com},
version = {0.8},
date = {2010},
}
答案2
如果找到了 R 的解(这里),我认为这也是一个很好的解决方案
@Manual{ram2010,
title = {Mathematica 8.0},
author = {{Wolfram Research Inc.}},
year = {2010},
url = {http://www.wolfram.com},
}