Generalhow to cite an web page

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
User avatar
sherlock
Posts: 34
Joined: Fri Apr 11, 2008 9:41 am

how to cite an web page

Post by sherlock »

Hi,
how can i cite an web page with bibtex?

Any tips?
Thanks in advance

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

how to cite an web page

Post by gmedina »

This answer in another forum[1] could be useful.
[1]www.cqf.info/
This question has been answered in this very forum. There's a search button.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
User avatar
sherlock
Posts: 34
Joined: Fri Apr 11, 2008 9:41 am

Re: how to cite an web page

Post by sherlock »

Thanks gmedina
lnewton
Posts: 17
Joined: Mon Mar 31, 2008 3:01 pm

how to cite an web page

Post by lnewton »

Here's a bibliography entry taken from the National Institute of Standards and Technoloyy (NIST) National Vulnerability Database.

Code: Select all

@misc{cve-2008-1368,
  key = 	 {CVE-2008-1368},
  title = 	 {{CRLF injection vulnerability in Microsoft Internet Explorer 5 and 6 allows remote attackers to execute arbitrary FTP commands via an ftp:// URL that contains a URL-encoded CRLF (\%0D\%0A) before the FTP command, which causes the commands to be inserted into an authenticated FTP connection established earlier in the same browser session, as demonstrated using a DELE command, a variant or possibly a regression of CVE-2004-1166. }},
  howpublished = {National Vulnerability Database},
  institution  = {NIST},
  day =       17,
  month =     {March},
  year = 	 2008,
  note = 	 {[online] \url{http://nvd.nist.gov/nvd.cfm?cvename=CVE-2008-1368}},
  url = {http://nvd.nist.gov/nvd.cfm?cvename=CVE-2008-1368}
}
It would of course be cited using~\cite{cve-2008-1368}.

Using \url as shown (which comes from the url package), long URLs break at appropriate places, and if you use the hyperref package, e.g.:

\usepackage[colorlinks=true,linkcolor=blue,citecolor=blue,urlcolor=blue]{hyperref}

and generate the file using pdflatex, the URLs are rendered as blue working links.
Lynn
Post Reply