BibTeX, biblatex and biberInappropriate Output of cited Website in Bibliography

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
azizever83
Posts: 41
Joined: Sun Apr 08, 2012 4:31 pm

Inappropriate Output of cited Website in Bibliography

Post by azizever83 »

Hi all,

I am trying to cite some websites in my project. However, it seems that I am not doing it in the right way. Here is both the BibTeX and output style for example.

Code: Select all

@MISC{CloudSecurity,
  title = {Top 5 Security Challenges of Cloud Storage},
  month = {Jun 09},
  year = {2010},
  journal = {PR Newswire},
  pages = {n/a},
  url = {http://proxy.uow.edu.au/docview/365948394?accountid=15112}
}
@MISC{wimaxdesign,
  title = {WiMAX Technology Design {ONLINE}},
  month = {July},
  year = {2012},
  accessed = {2012.07.11},
  owner = {aziz},
  timestamp = {2012.07.11},
  url = {http://freewimaxinfo.com/wimax-design.html}
}
And this is the output.
bibliography-item-website.jpg
bibliography-item-website.jpg (7.44 KiB) Viewed 2348 times
How can I show all of the required fields such as accessed date, url, etc.

Thanks in advance
Last edited by localghost on Thu Oct 04, 2012 10:25 am, edited 1 time in total.

Recommended reading 2024:

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

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Inappropriate Output of cited Website in Bibliography

Post by localghost »

Somehow I can't comprehend the problem (see attachment).

Code: Select all

\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@misc{CloudSecurity,
  title = {Top 5 {S}ecurity {C}hallenges of {C}loud {S}torage},
  month = {Jun 09},
  year = {2010},
  journal = {PR Newswire},
  pages = {n/a},
  url = {http://proxy.uow.edu.au/docview/365948394?accountid=15112}
}
@misc{wimaxdesign,
  title = {{WiMAX} {T}echnology {D}esign {ONLINE}},
  month = {July},
  year = {2012},
  accessed = {2012.07.11},
  owner = {aziz},
  timestamp = {2012.07.11},
  url = {http://freewimaxinfo.com/wimax-design.html}
}
\end{filecontents*}

\bibliographystyle{unsrt}

\begin{document}
  \nocite{*}
  \bibliography{\jobname}
\end{document}
So, for an adequate problem description in order to avoid guesswork and random shots please prepare a proper, self-contained and minimal example.


Thorsten
Attachments
The resulting output.
The resulting output.
references-unsrt.png (10.91 KiB) Viewed 2346 times
azizever83
Posts: 41
Joined: Sun Apr 08, 2012 4:31 pm

Re: Inappropriate Output of cited Website in Bibliography

Post by azizever83 »

Sorry,
Did not get the point from ur response.
Thanks
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Re: Inappropriate Output of cited Website in Bibliography

Post by localghost »

With the information you gave your description of the problem is inadequate, thus it is incomprehensible to others. Follow the links in my last reply and obey the instructions there to prepare an example that produces exactly the output you have shown in your question.

And by the way, please abstain from external links to pictures and similar stuff. These links can expire with time and make the problem more incomprehensible as it already is. Attachments can be uploaded to the forum server.
Post Reply