I want to cite software in the following format using BibTeX:
[author], [software name], [version number], [year], available at [URL]
How can I do this?
I want to cite software in the following format using BibTeX:
[author], [software name], [version number], [year], available at [URL]
How can I do this?
This answer is an adapted copy of the original one provided by Pascal on SuperUser. It is copied here as a community wiki for archival purpose.
If you use the package biblatex, you can thus use the @software entry-
type in your database:
@software{hadoop,
author = {{Apache Software Foundation}},
title = {Hadoop},
url = {https://hadoop.apache.org},
version = {0.20.2},
date = {2010-02-19},
}
Produces
Apache Software Foundation. Hadoop. Version 0.20.2. Feb. 19, 2010. URL: https://hadoop.apache.org
Package biblatex Warning: No driver for entry type 'software'. Using fallback driver on input line 191.? It seems to be outputting the correct output but still giving a warning
– JMY1000
Nov 30 '19 at 04:45
keywords trick). (with biblatex 2017/11/21 v3.9)
– kebs
Feb 12 '20 at 14:42
Apache Software Foundation to not be abbreviated as A. S. Foundation by using curly braces around the foundation name: author = {{Apache Software Foundation}}
– hlongmore
Jan 01 '23 at 12:07
How about
@misc{blabla,
author = {author name},
title = {software name (version ...)},
year = {year},
url = {url},
}
I think that would be completely valid. You could also use the note field to add information.
.bst, not.sty. What's the argument of the\bibliographystyleinstruction in your document? – Mico Jul 10 '15 at 07:27biblatexpackage are intrinsically different. The former is a program that processes a.bibfile, when the latter is a LaTeX package. One can thus use both together (even if biber is often recommended over BibTeX - ymmv though). Whatever it be, the bibliographic style is however an important information to provide. – ebosi Jun 09 '17 at 20:02biblatexis a LaTeX package...) The purpose of my comment was purely to elicit more usable information from the OP. I'm afraid I wasn't particularly successful, though. :-( – Mico Jun 09 '17 at 20:15(-;– ebosi Jun 09 '17 at 23:12