引文定制

引文定制

向大家问好!

我正在帮助一位朋友撰写一篇法律类论文,我正在努力以正确的方式设置引用。在这些类型的论文中,我们通常有两种不同类型的引用:

  • 脚注引文:我们发现“作者+标题+出版商+年份+...+作者评论“;
  • 论文参考书目:我们发现标准书目没有作者评论

问题如下:

这是我的主要内容:

\documentclass{article}

% Dimensione dell'area di scrittura -> tra parentesi
% (larghezza, altezza)
\usepackage[a4paper, total={15cm, 20.8cm}]{geometry}

\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage[citestyle=verbose-ibid, labeldateparts]{biblatex}

\addbibresource{biblio.bib}



\title{FORMALISING ALGORITHMIC FAIRNESS AND UNFAIRNESS IN LEGAL EXPERIENCE}
\author{Veronica Paternolli}
\date{\today}


\begin{document}
\maketitle

[...]


\clearpage
\tableofcontents 

\clearpage
\input{sections/introduction}
[...]
\printbibliography

\end{document}

现在看起来是这样的: 在此处输入图片描述

问题如下:

我们希望在使用时\footcite{ }

  • 在页脚中 [按此顺序] 仅包含“作者”、“标题”、“出版商”、“日期”以及(如果存在)“注释”。
  • 最后将其他一切都列出来。

答案1

若要将注释放在末尾,请在 bibitems 中使用addendum代替,请参阅notemoewe 的这个回答

要将其从参考书目中删除,请使用:

\AtEveryBibitem{%
  \clearfield{addendum}%
}

以下是完整的 MWE:

\begin{filecontents}[overwrite]{biblio.bib}
@book{wolfgang2017introduction,
  title={Introduction to artificial intelligence},
  author={Wolfgang, Ertel},
  year={2017},
  publisher={Springer},
  addendum = {{This} is a note about this book.}
}
@inproceedings{dymitruk2021borderlands,
  title={Borderlands of the Law and Technology: from Digital Machines to LegalTech},
  author={Dymitruk, Maria},
  booktitle={Legal Tech},
  pages={67--80},
  year={2021},
  organization={Nomos Verlagsgesellschaft mbH \& Co. KG},
  addendum = {{This} is a note about this conference proceedings.}
}
\end{filecontents}

\documentclass{article}
\usepackage[a4paper, total={15cm, 20.8cm}]{geometry}

%\usepackage[utf8]{inputenc} no more needed
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage[citestyle=verbose-ibid, labeldateparts]{biblatex}

% no note in Bibliography
\AtEveryBibitem{%
  \clearfield{addendum}%
}

\addbibresource{biblio.bib}

\usepackage{hyperref}% better loaded at last

\title{FORMALISING ALGORITHMIC FAIRNESS AND UNFAIRNESS IN LEGAL EXPERIENCE}
\author{Pippo Pluto}
\date{\today}

\begin{document}
\maketitle

\clearpage
\tableofcontents 

\clearpage
\section{Introduction}

Something with a footnote citation.\footcite{wolfgang2017introduction}

Something with another footnote citation.\footcite{dymitruk2021borderlands}

\clearpage
\printbibliography

\end{document}

脚注引用:

在此处输入图片描述

参考书目:

在此处输入图片描述

相关内容