Latex/Bibtex Help

Soldato
Joined
7 Apr 2004
Posts
4,212
Hi,

I'm trying to get Bibtex to output information about online resources in my references list. Specifically I want to output the URL and Date Accessed of the resource.

I've tried using the plain and abbrv bibtex styles and neither seems to want to output this information.

My bibtex entry:

Code:
@Article{ VoltageIBEPKI,
	title = "{Identity-Based Encryption and PKI -- Making Security Work}",
	author = "Voltage Security",
	url = "http://www.voltage.com/pdf/IBE_and_PKI.pdf"
	note = "Date Accessed: 02/2010"
}

And this renders the following reference list entry: [13] Voltage Security. Identity-Based Encryption and PKI Making Security Work. Omitting all the URL details :(

Anyone have any idea of a bibtex style that will output this data, or know a modification of some kind? The plain style is perfect for the papers & journal information, but not URLs/Dates.
 
If some of the attributes aren't appearing, it might be that you aren't using the correct bibtex document type to create your bibtex entry.

This an example entry from my FYP last year: [18] Mathworks. Lego mindstorms nxt toolkit, 2009. http://www.mathworks.com/
programs/mindstorms/ [Accessed 25th April 2009].
[


To achieve that, the bibtex entry is:

Code:
@misc{MATLABSIMULINK,
  author = "{Mathworks}",
  title = "LEGO Mindstorms NXT Toolkit",
  year = {2009},
  note = {\url{http://www.mathworks.com/programs/mindstorms/}  [Accessed 25th April 2009]}
}

Hope that helps.
 
Back
Top Bottom