Can someone help me to reference this user guide in LaTeX? I'm searching for a tutorial of how to reference a user guide, but can't find one. Does it fall in the category of article?
MIT Java Wordnet Interface (JWI)
User’s Guide
Version 2.2.x
Mark A. Finlayson
(markaf@alum.mit.edu)
November 16, 2011
The bibliography is set by BibTeX with the style plainnat (requires natbib)
I've used TexStudio to generate the citation. It was generated as MIT Java Wordnet Interface (JWI) Users Guide. using the code below:
@manual{jwimit,
ALTauthor = {Mark A. Finlayson},
title = {MIT Java Wordnet Interface (JWI) User’s Guide},
date = {November 16, 2011},
OPTlanguage = {English},
OPTversion = {Version 2.2.x},
OPTorganization = {MIT},
OPTpagetotal = {10},
OPTpubstate = {November 16, 2011},
}
biblatex?biblatexprovided the entry typemanual– Marco Daniel Mar 30 '13 at 19:08plainnatprovides the entrytechreport– Marco Daniel Mar 30 '13 at 20:18bibtex fieldsmanually using any latex editor. I use TeXmaker for this purpose. – texenthusiast Mar 30 '13 at 20:51ALTauthororOPT....Remove the prefixesALTandOPTand it will work. – Marco Daniel Mar 31 '13 at 14:48