[GRASS-SVN] r73344 - sandbox/wenzeslaus/g.citation
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Sep 16 08:09:08 PDT 2018
Author: wenzeslaus
Date: 2018-09-16 08:09:08 -0700 (Sun, 16 Sep 2018)
New Revision: 73344
Modified:
sandbox/wenzeslaus/g.citation/g.citation.py
Log:
g.citation: software not commonly available in BibTeX, use misc
Modified: sandbox/wenzeslaus/g.citation/g.citation.py
===================================================================
--- sandbox/wenzeslaus/g.citation/g.citation.py 2018-09-16 03:46:50 UTC (rev 73343)
+++ sandbox/wenzeslaus/g.citation/g.citation.py 2018-09-16 15:09:08 UTC (rev 73344)
@@ -600,7 +600,9 @@
year = {2011}
}
"""
- print("@software{", citation['module'], ",", sep="")
+ # TODO: make this an option to allow for software in case it is supported
+ entry_type = "misc"
+ print("@", entry_type, "{", citation['module'], ",", sep="")
print(" title = {", "GRASS GIS: ", citation['module'], " module},", sep="")
More information about the grass-commit
mailing list