如何格式化对英国立法的引用?

如何格式化对英国立法的引用?

我正在尝试引用 1986 年《公共秩序法》。在我的参考列表中,它应显示为:

1986年公共秩序法 (2017 年 11 月 21 日访问)网址:http://www.legislation.gov.uk/ukpga/1986/64/contents

但我明白:

1986年公共秩序法(nd)。(2017 年 11 月 21 日访问)。网址:http://www.legislation.gov.uk/ukpga/1986/64/contents

我可以将 1986 移到年份,但它不再是斜体并且带有括号。

代码为:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{bibentry} 
\usepackage[style=authoryear-ibid,firstinits,backend=biber,sorting=nyt,natbib=true, maxbibnames=99,maxcitenames=2, uniquelist=false, uniquename=false]{biblatex}
\DeclareNameAlias{sortname}{family-given}
\addbibresource{refs.bib} %Imports bibliography file
\title{min}

\date{November 2017}

\begin{document}

\maketitle

\section{Introduction}
\textcite{POA1986}
\addcontentsline{toc}{chapter}{Bibliography}

% % Actually generates your bibliography.
% \bibliography{example}
\printbibliography
\end{document
}

围兜是:

@ONLINE {POA1986,
title = "Public Order Act 1986",
url   = "http://www.legislation.gov.uk/ukpga/1986/64/contents",
note = "[Online; accessed 27-November-2017]"

}

相关内容