[Tex/LaTex] Citing EU regulations using BibTeX

bibtexnatbib

For my dissertation, I would like to cite an EU regulation No 269/2014 using BibTeX in the APA style. Has anyone ever done this? What is the most convenient way to do so and which template should be used?

I am aware that there are specialised packages for citing legislation, but this is likely going to be the only legal source for my document.

Minimum working example:

\documentclass{book}
\usepackage{natbib}

\begin{document}
% Body text

\bibliography{references}
\bibliographystyle{apa}
\nocite*{}

\end{document}

Best Answer

I'd treat it with the catch all @misc entry:

\documentclass{article}% no page break before bibliography
\usepackage{natbib}
\usepackage{url}

\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@misc{eu-269-2014,
  author={{Council of European Union}},
  title={Council regulation ({EU}) no 269/2014},
  year={2014},
  note={\newline\url{http://eur-lex.europa.eu/legal-content/EN/TXT/?qid=1416170084502&uri=CELEX:32014R0269}},
}
\end{filecontents*}

\begin{document}
% Body text
\citet{eu-269-2014}

\bibliography{\jobname}
\bibliographystyle{apa}

\end{document}

Note that filecontents is used just for convenience; use your normal method with an external .bib file. I also changed the document class for avoiding page breaks.

enter image description here