How to generate reference of web pages in the IEEE citation format with bibtex?
Posted on In QAHow to generate reference of web pages in the IEEE citation format with bibtex?
From the IEEE Citation Reference, the reference for web page is like this:
WWW
Basic Format:
[1] J. K. Author. (year, month day). Title (edition) [Type of medium]. Available: http://www.(URL)
Example:
[1] J. Jones. (1991, May 10). Networks (2nd ed.) [Online]. Available: http://www.atm.com
How to generate this kind of reference with Bibtex?
Use the online
entry type of bibtex:
@online{networks,
author="J. Jones",
title="{Networks (2nd ed.)}",
url="http://www.atm.com",
note="(1991, May 10)",
}
It works with the IEEEtran document style for some IEEE journals/transactions.