How do I show the URL in a citation?

I’m in BibLaTex mode using this code:

@Online{iea2021,
author = {IEA},
title = {CO2 emissions},
year = {2021},
date = {2021-10-22},
url = {https://www.iea.org/reports/global-energy-review-2021/co2-emissions},
note = {Accessed: 2021-10-22},
}

but I only see this in the reference list:

[3] IEA (2021). CO2 emissions , .

How do I show the URL?

Thanks!

That first and foremost currently depends on which program ((la)tex based, openoffice, libreoffice, microsoft word, … etc.) and also which citationstyle (MLA, APA, IEEE, … etc.) you use or would like to use to write your text.

  • For the instance you use a tex based system and also use biblatex to manage the citationstyle, then this currently cannot be configured in Jabref, but is rather done in your tex document. Check out Biblatex documentation page 74 for some standart styles: https://mirror.physik.tu-berlin.de/pub/CTAN/macros/latex/contrib/biblatex/doc/biblatex.pdf
    The following are examples of how you could put it into your preamble. Choose one of them or adapt to make your own. Most of them should include the URL, but i have not tried all of them. I know for a fact that the authoryear style includes the URL. If you want to turn the URL into a link, you can use the hyperref package.
\usepackage[style=authoryear,citestyle=authoryear]{biblatex}
\usepackage[backend=biber, footmarkoff]{biblatex-chicago}
\usepackage[style=numeric,citestyle=authoryear]{biblatex}
\usepackage[style=numeric,citestyle=numeric]{biblatex}
\usepackage[style=MLA-new,sortcites=true,sorting=nyt]{biblatex}
\usepackage[style=MLA-new,sortcites=true]{biblatex}
\usepackage[style=APA,sortcites=true]{biblatex}

on another note: if you want to include something like Accessed: 2021-10-22 into your bibliography, in biblatex this is usually easier done via the urldate field.

you can add it like this:
urldate = {2021-10-22},
it would replace
note = {Accessed: 2021-10-22},