ccodwg / CovidTimelineCanada

A definitive dataset for COVID-19 in Canada
https://opencovid.ca/
Other
26 stars 8 forks source link

Propose adding bib file for citation #72

Closed sjkiss closed 1 year ago

sjkiss commented 1 year ago

I propose adding a bib file in subfolder docs and a link to this bib file in README.md for easier importation into bibliographic software such as Zotero. I tested the formatting of this bib file with biblatex and got this output which likes pretty close to your recommended citation

image

This MWE reproduces that output, for use in a tex file.


\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{references.bib}
@dataset{covidtimelinecanada,
author = {Berry and I. and O’Neill, M. and Sturrock, S. L. and Wright, J. E. and Acharya, K.and Brankston., G. and Harish, V. and Kornas, K. and Maani, N. and Naganathan, T. and Obress, L. and Rossi, T. and Simmons, A. E. and Van Camp, M. and Xie, X. and Tuite, A. R. and Greer, A. L. and Fisman, D. N. and Soucy, J.-P. R.},
title = {A sub-national real-time epidemiological and vaccination database for the COVID-19 pandemic in Canada.},
number= {8 (1)},
%version = {1}, 
series= {Scientific Data},
year = {2021},
url={https://doi.org/10.1038/s41597-021-00955-2}
}

\end{filecontents}

\usepackage[maxbibnames=99]{biblatex}
\addbibresource{references.bib}

\usepackage[latin]{babel}
\usepackage{blindtext}
\begin{document}

\blindtext

\cite{covidtimelinecanada}

\printbibliography
\end{document}
jeanpaulrsoucy commented 1 year ago

This is a fantastic idea, @sjkiss. Sorry, I'm just noticing this now. I'll get it merged shortly.