使用 BibTeX 引用欧盟法规

使用 BibTeX 引用欧盟法规

在我的论文中,我想引用一个欧盟法规第 269/2014 号使用 APA 格式的 BibTeX。有人这样做过吗?最方便的方法是什么,应该使用哪个模板?

我知道有用于引用立法的专门软件包,但这可能是我的文件的唯一法律来源。

最小工作示例:

\documentclass{book}
\usepackage{natbib}

\begin{document}
% Body text

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

\end{document}

答案1

我会用捕获所有@misc条目来处理它:

\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}

请注意,这filecontents只是为了方便;使用外部.bib文件时请使用常规方法。我还更改了文档类以避免分页。

在此处输入图片描述

答案2

当我引用欧盟法规时,我会使用文章,因为法规或指令是在官方公报上发布的。我不确定作者是谁,所以我留空了。

@Article{eu03,
  title   = {REGULATION (EC) No 765/2008 OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL of 9 July 2008 setting out the requirements for accreditation and market surveillance relating to the marketing of products and repealing Regulation (EEC) No 339/93},
  journal = {OJ},
  year    = {2008-08-13},
  volume  = {L 218},
  pages   = {30--47},
}

其结果为:

在此处输入图片描述

相关内容