1

Let's take a look at one classical bibliography-entry for a online-source:

(I removed the irrelevant options for better visibility...)

@online{ID,
    ALTauthor = {author},
    title = {title},
    date = {date},           % the date of time the document was created (type in this way: 2015)
    OPTdate = {date},        % what is that?
    OPTmonth = {month},      % what is that?
    OPTyear = {year},        % what is that?
    OPTurldate = {urldate},  % the date of time the URL was visited (type in this way: 2015-07-16)
}

Which option do I have to use for which purpose? I am using Biblatex and Biber.

Thank you very much for your help!

cfr
  • 198,882
Dave
  • 3,758

1 Answers1

2

If you are using Biblatex and Biber - not BibTeX - then

  • date is the main date the resource was created in YYYY-MM-DD format;
  • year, month and day are alternative formats for date, provided for backwards compatibility;
  • urldate is the date you visited the web page in YYYY-MM-DD format.

That's it.

For other sources, there is also

  • origdate which may be used by some styles for an original date of publication. For example, a translated work might use this for the date the original was published, since date would be the date of publication of the translation.
cfr
  • 198,882