如何创建这个特定的围兜模板?

如何创建这个特定的围兜模板?

我曾经使用该apacite包作为参考,但这次,我必须使用另一个模板,但我不知道该怎么做。

  1. 每个引用都必须按照以下顺序出现在脚注中,例如:Donald Woods Winnicott,Jeu et réalité。潜在空间。巴黎:伽利玛出版社。

  2. 每个引用的参考文献必须按照相同的顺序出现在参考文献部分。

您知道为此目的我必须使用哪个包吗?我需要雇用吗biblatex


这是我的 MWE:

\documentclass[hidelinks,12pt,twoside,openright,a4paper]{book}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}

\usepackage[numberedbib,nosectionbib,natbibapa]{apacite}
\bibliographystyle{apacite} 

\usepackage{hyperref}

\begin{filecontents}[overwrite]{mybib.bib}
@book{Winnicott1975,
    address = {Paris},
    author = {Winnicott, Donald Woods},
    publisher = {{\'E}ditions Gallimard},
    title = {Jeu et r{\'e}alit{\'e}. {L}'espace potentiel},
    year = {1975}}
\end{filecontents}


\begin{document}

\chapter{Un chapitre}
Some texte\footnote{\citet{Winnicott1975}}.

\bibnewpage 
{%start grouping
    \raggedright 
    %\nocite{}
    \bibliography{mybib}
}%end grouping

\end{document}

答案1

看起来biblatexverbose样式可能适合您。您没有提供足够的细节来确定,但以下内容非常接近您想要的。

\documentclass[12pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage[backend=biber, style=verbose]{biblatex}
\usepackage{hyperref}

\DeclareDelimFormat[bib]{nametitledelim}{\addcomma\space}

\begin{filecontents}{\jobname.bib}
@book{Winnicott1975,
  address   = {Paris},
  author    = {Winnicott, Donald Woods},
  publisher = {Éditions Gallimard},
  title     = {Jeu et réalité},
  subtitle  = {L'espace potentiel},
  year      = {1975},
}
\end{filecontents}
\addbibresource{\jobname.bib}

\begin{document}
Some texte\autocite{Winnicott1975}.

\printbibliography
\end{document}

唐纳德·伍兹·温尼科特 (Donald Woods Winnicott),《游戏与现实》。潜在空间。巴黎:伽利玛出版社,1975 年。

请注意,当你使用时,biblatex你需要在文档上运行 Biber,而不是 BibTeX(你使用apacite)。Biblatex 与 Biber:配置我的编辑器以避免未定义的引用可以帮助您设置编辑器来运行 Biber 而不是 BibTeX。

如果你不熟悉biblatex bibtex 与 biber 以及 biblatex 与 natbib 的比较biblatex 简介(适合初学者)可能会有用。

相关内容