[Tex/LaTex] How should I cite European Union’s General Data Protection Regulation?

biblatexciting

How do you suggest to cite the European Union's recent General Data Protection Regulation?

I have looked at Citing EU regulations using BibTeX, but I would like a more specific advice.

Best Answer

enter image description here

Since this reference does not belong to any of the typical types of bibliography entries, and since it has an online link, it is good to sort it under online.

\begin{filecontents*}{sample.bib}
@online{EUdataregulations2018,
    title = {2018 reform of EU data protection rules},
    url = {https://ec.europa.eu/commission/sites/beta-political/files/data-protection-factsheet-changes_en.pdf},
    organization = {European Commission},
    date = {2018-05-25},
    urldate = {2019-06-17}
}
\end{filecontents*}


\documentclass{report}

\usepackage[x11names]{xcolor}

\usepackage{hyperref}
\hypersetup{citecolor=DodgerBlue3, urlcolor=Blue1, colorlinks=true}

\usepackage[style=alphabetic]{biblatex}
\addbibresource{sample.bib}

\begin{document}

\cite{EUdataregulations2018}

\printbibliography

\end{document}