Como alterar `\autocite{x}` de um estilo de nota de rodapé para vincular a bibliografia a um rótulo autor-ano?

Como alterar `\autocite{x}` de um estilo de nota de rodapé para vincular a bibliografia a um rótulo autor-ano?

Produzo documentos com listas de leituras recomendadas usando \nocite{*}o estilo bibliográficoOSCOLA.

OSCOLA normalmente usa apenas notas de rodapé, mas ainda assim uma bibliografia pode ser impressa.

Gostaria de colocar agora algumas referências a alguns itens da lista de leituras recomendadas usando um rótulo autor-ano. Como posso configurar o biblatex para produzir tal etiqueta e vinculá-la à bibliografia? Eu uso o pandoc para redigir o conteúdo, então o \autocite{x}comando é imposto.

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}

insira a descrição da imagem aqui

Resultado Almejado

Isto foi observado anteriormente (Frédéric Simon, 2018).

Quando configuro o biblatex com citestyle=authoryear, recebo o erro:

Erro do pacote etoolbox: Alternar 'cbx@postnoteprinted' indefinido.

Responder1

oxnotesestilo implementa BL-OSCOLA de uma forma (não legal) amigável às humanidades:

notas de boi

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}

informação relacionada