未编号参考文献和芝加哥风格引文列表中的完整作者姓名?

未编号参考文献和芝加哥风格引文列表中的完整作者姓名?

我需要使用芝加哥格式的引用。期刊规定了以下相关要求:

  1. 参考书目应包含每位作者的全名,如所引用的出版物中所述。不要只使用名字和中间名的首字母(除非在所引用的著作中以这种形式列出姓名)。
  2. 参考文献在参考书目中不得编号。
  3. 在正文中,作者 A 和 B 应引用为 A 和 B,而不是 A & B。

该期刊建议使用“\usepackage[authordate,backend=bibtex]{biblatex-chicago}.”而不是 biber。

我的问题是我不能遵守规则 1。我在这里读到了有关 biblatex-chicago 包的解决方案Bibtex 和芝加哥风格的引用?但对我来说这并不实用,因为每个参考文献都必须在正文之前输入,我有很多参考文献,它们都在一个 bib 文件中。我想避免重新输入它们,因为这将非常耗时。下面我提供了我到目前为止所做的事情,但我通过这种方式获得了带有缩写名字的编号参考文献。

示例输出:

Baldwin, K. (2016). The paradox of traditional chiefs in democratic Africa. Cambridge University Press.
Baldwin, K. and P. Raffler (2019). Traditional leaders, service delivery, and electoral 611 accountability. Decentralized Governance and Accountability, 61–90.

您知道如何解决这个问题吗?如果使用 \usepackage[authordate,backend=bibtex]{biblatex-chicago},则无法在文档末尾使用命令 \bibliography{test-bib}。在这种情况下如何正确定义它?谢谢。

\documentclass[12pt]{article}

\usepackage{amssymb,amsmath,amsfonts,eurosym,geometry,ulem,graphicx,caption,color,setspace,sectsty,comment,footmisc,caption,natbib,pdflscape,subfigure,array,hyperref, mathpazo, longtable,rotating, float, booktabs, lineno}

%\usepackage[authordate,backend=bibtex]{biblatex-chicago}

\normalem

\onehalfspacing
\newtheorem{theorem}{Theorem}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{proposition}{Proposition}
\newenvironment{proof}[1][Proof]{\noindent\textbf{#1.} }{\ \rule{0.5em}{0.5em}}

\newtheorem{hyp}{Hypothesis}
\newtheorem{subhyp}{Hypothesis}[hyp]
\renewcommand{\thesubhyp}{\thehyp\alph{subhyp}}

\newcommand{\red}[1]{{\color{red} #1}}
\newcommand{\blue}[1]{{\color{blue} #1}}

\newcolumntype{L}[1]{>{\raggedright\let\newline\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{C}[1]{>{\centering\let\newline\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{R}[1]{>{\raggedleft\let\newline\\arraybackslash\hspace{0pt}}m{#1}}
\graphicspath{{figures/}}
\geometry{left=1.0in,right=1.0in,top=1.0in,bottom=1.0in}

\usepackage{filecontents}

\geometry{left=1.0in,right=1.0in,top=1.0in,bottom=1.0in}
\begin{filecontents}{\jobname.bib}


@book{baldwin2016,
    title={{The paradox of traditional chiefs in democratic Africa}},
    author={Baldwin, Kate},
    year={2016},
    publisher={Cambridge University Press}
}


@article{baldwinraffler2019,
    title={{Traditional leaders, service delivery, and electoral accountability}},
    author={Baldwin, Kate and Raffler, Pia},
    journal={Decentralized Governance and Accountability},
    pages={61--90},
    year={2019}
}
\end{filecontents}

\usepackage{natbib}

\begin{document}
    Lorem ipsum~\citep{baldwin2016}.
    Dolor sit amet~\citet{baldwinraffler2019}.
    
    {\nocite{*}  \bibliographystyle{chicago}
    \bibliography{\jobname} }

\end{document}

答案1

\usepackage[abbreviate=true,%
    cmsbreakurl,%
    sorting=nyt,%
    maxnames=3,%
    minnames=1,%
    isbn=false,%
    url=true,%
    date=long,%
    cmsdate=both,%
    bibencoding=inputenc,%
    bibannotesep=vpar,
    booklongxref=bib,%
    longcrossref=bib,%
    related=true,%
    notes]
    {biblatex-chicago}

相关内容