include bibliography in main.tex
\bibliographystyle{abbrv}
\bibliographystyle{acm}
\bibliographystyle{plain}
\bibliographystyle{IEEEtran}
\bibliography{bibliography/biosbib}
URL:
You can put it in URL field, but it only shows on IEEE format (IEEEtran), it does not show up for other format. You have to move url to HowPublished field.
For example:
\url{www.windbg.org}
Please remember to include \usepackage{url} in the main.tex
Misc:
Sometimes, you don't know the author of the reference, and the author is a group name. In this case, you need to add a curly brace out side of the group name, and the bibtex will not threat it as human names.
For example:
@MISC{tboot,
author = {{Trust Computing Group}},
title = {{Trusted Boot}},
howpublished = {\url{http://www.trustedcomputinggroup.org/resources/trusted_boot}},
owner = {fengwei},
timestamp = {2013.05.03}
}
If you don't add curly brace, it will treat the word "group" as the last name, and order the reference based on that.
No comments:
Post a Comment