My question is pretty much what the title says. I'm using biblatex and having a very tough time figuring out what the proper way is to cite a particular article, section, etc of the Constitution (I'm actually working on the California Constitution, but it's the same question). None of the biblatex entry types seem to ask for the proper information.
1 Answers
Law citations are always quite tricky, but there are some biblatex styles implementing the complicated requirements. A list of styles with support for legal citations that goes beyond what the standard styles offer can be found in What is best practice re. handling legal sources with Biblatex/Biber for disciplines other than law?. American styles are currently not very well supported, there are no full styles for Bluebook and ALWD (see Bluebook support in Latex?), though biblatex-chicago implements a subset of Bluebook recommendations.
Following the Introduction to Basic Legal Citation, the following might be a good way to start.
\documentclass[american]{article}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=authoryear,backend=biber,date=short,maxcitenames=2]{biblatex}
\usepackage{hyperref}
\addbibresource{\jobname.bib}
\DeclareFieldFormat[legislation]{title}{#1}
\renewcommand*{\postnotedelim}{%
\ifentrytype{legislation}%
{\addspace}%
{\addcomma\space}%
}
\begin{filecontents}{\jobname.bib}
@legislation{USConst,
title = {Constitution of the United States},
shorthand = {U.S.~Const.},
year = {1787},
}
\end{filecontents}
\begin{document}
\cite[art.~III, \S~2, cl.~2.]{USConst}
\printbibliography
\end{document}
One might also like to get rid of the year (especially for the constitution and other basic laws, as well as for laws that contain the date in their title, e.g. "Representation of the People Act 2000" or "The Eggs and Chicks (England) Regulations 2009").
Note also that older versions of the MLA style guide do not even require the Constitution be listed in the works cited (with the approach above it looks indeed a bit lonely).
- 175,683
-
-
@Una Good point. List answers like this do get outdates quite quickly. I removed the list and pointed to an answer with a newer list that also mentions
biblatex-chicago. – moewe Sep 20 '20 at 06:33
oscolais a style forbiblatex, so you will not have to give up using it. Just choose the style that fits your needs best as a basis and modify it to give exactly the result you expect. – moewe Sep 12 '13 at 13:43biblatex. Creating Entry in Bibtex for Executive Orders. – Alan Munn Sep 20 '13 at 20:55