How to cite website

I'm trying to cite a website but having no luck. I found a website that said the following approach should work:

@ONLINE, title = >, month = Aug., year = , url = > 

but this only yields the following output: 5] R. Ford. Earthquake: Twitter users learned of tremors seconds before feeling them @ONLINE, 2011.

96.5k 12 12 gold badges 198 198 silver badges 450 450 bronze badges asked May 16, 2012 at 2:31 2,383 7 7 gold badges 22 22 silver badges 22 22 bronze badges

Hi ngramsky, Welcome to TeX.SE! You'll find it's a friendly group here :) I removed the Mactex tag, as that is reserved for questions explicitly concerning the distribution.

Commented May 16, 2012 at 2:36

If that is what this website said, disregard it! Get rid of the '<@ONLINE>' in the title field, for instance; also fix your 'month' field, especially if you are using biblatex , where the month field should be: month = aug, (or, better: month = 8 ).

Commented May 16, 2012 at 2:53

I did as you suggested and the @ONLINE no longer appears, but the URL has yet to appear as well. How do I ensure the URL itself is listed in the bib?

Commented May 16, 2012 at 2:58

Well, you need to use a bibliography style that will print the url. If you provide a minimal example of a .tex file, including the bibliography and citation commands, someone will surely be able to help you.

Commented May 16, 2012 at 3:57

1 Answer 1

It looks like you are trying to use a numeric style of some sort. The following works, although you will no doubt need to fiddle with the exact styling of titles and so forth. (Incidentally, note the correct way of using the date field.)

\documentclass \begin <\jobname.bib>@online, title = , date = , url = > \end \usepackage[style=numeric,backend=biber] \addbibresource <\jobname.bib>\begin You can cite an online resource \cite. \printbibliography \end

Citation of online resource

answered May 17, 2012 at 9:14 Paul Stanley Paul Stanley 18.3k 4 4 gold badges 38 38 silver badges 54 54 bronze badges

Could you please add a reference or explain what format is expected by biber in order to process the date and year fields available to @online? Are the schemes YYYY-MM-DD and YYYY-MM used for date and are these the only allowed formats?