我应该如何引用欧盟的《通用数据保护条例》?

我应该如何引用欧盟的《通用数据保护条例》?

你建议如何引用欧盟最近出台的《通用数据保护条例》

我看过使用 BibTeX 引用欧盟法规,但我希望得到更具体的建议。

答案1

APA 引用格式中的引用和立法类型的比较

由于此参考文献不属于任何典型的参考书目条目类型,并且具有在线链接,因此最好将其归类为online;但是,有些引用样式确实具有Legislation条目类型:

% gdpr.bib file
\begin{filecontents}[overwrite]{gdpr.bib}
@online{GDPR2016a,
  date       = {2016-05-04},
  location   = {OJ L 119, 4.5.2016, p. 1--88},
  title      = {Regulation ({EU}) 2016/679 of the {European} {Parliament} and of the {Council}},
  url        = {https://data.europa.eu/eli/reg/2016/679/oj},
  titleaddon = {of 27 {April} 2016 on the protection of natural persons with regard to the processing of personal data and on the free movement of such data, and repealing {Directive} 95/46/{EC} ({General} {Data} {Protection} {Regulation})},
  abstract   = {The General Data Protection Regulation (2016/679, "GDPR") is a Regulation in European Union (EU) law on data protection and privacy in the EU and the European Economic Area (EEA).},
  author     = {{European Parliament} and {Council of the European Union}},
  keywords   = {access consumer data data-processing freedom gdpr information justice law personal privacy protection security verification},
  urldate    = {2023-04-13},
}

@Legislation{EuropeanParliament2016a,
  date       = {2016-05-04},
  location   = {OJ L 119, 4.5.2016, p. 1--88},
  title      = {Regulation ({EU}) 2016/679 of the {European} {Parliament} and of the {Council}},
  url        = {https://data.europa.eu/eli/reg/2016/679/oj},
  titleaddon = {of 27 {April} 2016 on the protection of natural persons with regard to the processing of personal data and on the free movement of such data, and repealing {Directive} 95/46/{EC} ({General} {Data} {Protection} {Regulation})},
  abstract   = {The General Data Protection Regulation (2016/679, "GDPR") is a Regulation in European Union (EU) law on data protection and privacy in the EU and the European Economic Area (EEA).},
  author     = {{European Parliament} and {Council of the European Union}},
  keywords   = {access consumer data data-processing freedom gdpr information justice law personal privacy protection security verification},
  urldate    = {2023-04-13},
}
\end{filecontents}

% preamble
\documentclass[a4paper,10pt]{article}

% utf8
\usepackage[utf8]{inputenc}

% hyperref
\usepackage[x11names]{xcolor}
\usepackage{hyperref}
\hypersetup{citecolor=DodgerBlue3, urlcolor=Blue1, colorlinks=true}

% bibliography
\usepackage[backend=biber,style=apa]{biblatex}
\addbibresource{gdpr.bib}

% document info
\title{Citing the GDPR}
\author{Aldaoudeyeh, Al-Motasem and Garza, Rolando}
\date{\today}

\begin{document}

\maketitle

One could cite as \texttt{online} \parencite{GDPR2016a}, or as
\texttt{Legislation} \parencite{EuropeanParliament2016a};
however, the latter would only be available if the chosen citation
style has a driver for the \texttt{Legislation} type.

\printbibliography

\end{document}

如果您希望将特定驱动程序添加到您的样式中,并使用可用字段,您可以添加或者定制不同的条目类型。

相关内容