
Produzco documentos con listas de lecturas recomendadas utilizando \nocite{*}
el estilo bibliográfico.OSCOLA.
OSCOLA normalmente utiliza sólo notas a pie de página, pero aún así se puede imprimir una bibliografía.
Me gustaría incluir ahora algunas referencias a algunos elementos de la lista de lecturas recomendadas utilizando una etiqueta de año de autor. ¿Cómo puedo configurar biblatex para producir dicha etiqueta y vincularla a la bibliografía? Utilizo pandoc para redactar contenido, por lo que \autocite{x}
se impone el comando.
MWE
\documentclass[a4paper]{scrartcl}
\usepackage{hyperref}
\usepackage[backend=biber,style=oscola,autocite=plain]{biblatex}
\addbibresource{test.bib}
\begin{filecontents*}{test.bib}
@online{simon2018,
url = {https://www.euractiv.com/section/energy/news/smart-meter-woes-hold-back-digitalisation-of-eu-power-sector/},
date = {2019-01-29},
author = {Frédéric Simon},
title = {Smart meter woes hold back digitalisation of EU power sector},
journaltitle = {EURACTIV},
}
\end{filecontents*}
\title{Recommended Readings}
\begin{document}
\maketitle
\section{Context}
This has been noted previously \autocite{simon2018}.
% References
\nocite{*} % include all elements from the bibliography
\printbibliography[title={Recommended Reading}]
\end{document}
Salida objetivo
Esto ya se ha señalado anteriormente (Frédéric Simon, 2018).
Cuando configuro biblatex con citestyle=authoryear
, aparece el error:
Error de paquete etoolbox: alternar 'cbx@postnoteprinted' sin definir.
Respuesta1
oxnotes
style implementa BL-OSCOLA de una manera (no legal) amigable con las humanidades:
MWE
\begin{filecontents*}[overwrite]{\jobname.bib}
@misc{UNGA_Res2222,
institution = {UNGA},
title = {Treaty on Principles Governing the Activities of States in the Exploration and Use of Outer Space, including the Moon and Other Celestial Bodies},
instrument_no= {RES 2222 (XXI)},
date = {1966-12-19},
entrysubtype = {undoc},
tabulate = {unres},
}
@online{simon2018,
url = {https://www.euractiv.com/section/energy/news/smart-meter-woes-hold-back-digitalisation-of-eu-power-sector/},
date = {2019-01-29},
author = {Frédéric Simon},
title = {Smart meter woes hold back digitalisation of EU power sector},
journaltitle = {EURACTIV},
}
@jurisdiction{antaios85,
title = {Antaios Compania Naviera S.A. v.
Salen Rederierna A.B. (The Nema)},
shorttitle = {The Nema},
date = {1985},
reporter = {A.C.},
pages = {191},
court = {H.L.},
additionalreports = {[1984] 3 WLR 592 and (1984) 128 SJ 564
and [1984] 3 All ER 229 and
[1984] 2 Lloyd’s Rep 235},
keywords = {gb},
}
@jurisdiction{corr08,
title = {Corr v. I.B.C. Vehicles Ltd.},
keywords = {gb},
date = {2008},
number = {[2008] UKHL 13},
journaltitle = {A.C.},
volume = {1},
pages = {884},
options = {year-essential=true},
institution = {HL},
shorttitle = {Corr},
pagination = {[]},
}
@jurisdiction{page96,
title = {Page v Smith},
usera = {gb},
date = {1996},
journaltitle = {AC},
pages = {155},
institution = {HL},
}
@inbook{pila10,
author = {Pila, Justine},
editor = {Dutton, William H. and Jeffreys, Paul W.},
booktitle= {World Wide Research: Reshaping the
Sciences and Humanities in the
Century of Information},
publisher= {MIT Press},
date = {2010},
title = {The Value of Authorship in the
Digital Environment},
pages = {210--231},
}
@book{leviathan,
author = {Hobbes, Thomas},
title = {Leviathan},
publisher = {Penguin},
date = {1985},
origdate = {1651},
location = {Harmondsworth},
}
@article{craig05,
author = {Craig, Paul},
title = {Theory {`Pure Theory'}
and Values in Public Law},
date = {2005},
journaltitle = {P.L.},
pages = {440},
}
\end{filecontents*}
\documentclass{article}
\usepackage{fontspec}
\setmainfont{Noto Serif}
\usepackage[style=oxnotes,%oscola,
citestyle=authoryear,
indexing=cite,
backend=biber,
ecli=yes,
babel=hyphen,
% autocite=footnote,
]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
text \autocite{UNGA_Res2222}
This has been noted previously \autocite{simon2018}.
...like in \cite{antaios85}, and two other cases in the House of Lords, \cite{corr08} and \cite{page96}.
Article \autocite{craig05}, book \autocite{pila10} and old book \autocite{leviathan}.
\printbibliography
\end{document}