期刊未出现在参考文献中的问题(使用芝加哥风格)

期刊未出现在参考文献中的问题(使用芝加哥风格)

我正在使用该natbib包和\bibliographystyle{chicago}作为我的参考。

它们出现在我的参考文献部分,但本节中的完整引用省略了期刊。

有人能帮助我了解原因或如何解决吗?

这是我的最小示例:


.tex 文件

\documentclass[11pt]{article}
\usepackage{fullpage, setspace, graphicx, rotating, nth, amsmath, booktabs, multirow, appendix, natbib, caption, lscape, mathtools,verbatim}
\graphicspath{{./Images/}}
\hyphenpenalty=3000


\begin{document}
    \begin{titlepage}
    \end{titlepage}

    \newpage
    \singlespacing

    \bibliographystyle{chicago}
    \bibliography{biblio16-17.0213}

    \newpage

\end{document}

以下是我看到的 bibtex 代码:

\relax 
\@writefile{toc}{\contentsline {subsection}{\numberline {0.1}Description of interventions}{1}}
\bibstyle{chicago}
\bibdata{biblio16-17.0213}
\bibcite{bruhn_mckenzie}{{1}{Bruhn and {McKenzie}}{{Bruhn and {McKenzie}}}{{}}}
\bibcite{nber2018}{{2}{Corcoran et~al.}{{Corcoran, Jennings, Cohodes, and Sattin-Bajaj}}{{}}}
\bibcite{king_2007}{{3}{King et~al.}{{King, Gakidou, Ravishankar, Moore, Lakin, Vargas, Téllez-Rojo, Ávila, Ávila, and Llamas}}{{}}}

这是biblio16-17.0213.bib找到引文的文件

@article{bruhn_mckenzie,
    title = {In Pursuit of Balance: Randomization in Practice in Development Field Experiments},
    volume = {1},
    issn = {1945-7782},
    url = {https://www.aeaweb.org/articles?id=10.1257/app.1.4.200},
    doi = {10.1257/app.1.4.200},
    shorttitle = {In Pursuit of Balance},
    abstract = {We present new evidence on the randomization methods used in existing
experiments, and new simulations comparing these methods.
We
find that many papers do not describe the randomization in detail. ({JEL} C83, C93, O12)},
    pages = {200--232},
    number = {4},
    journaltitle = {American Economic Journal: Applied Economics},
    author = {Bruhn, Miriam and {McKenzie}, David},
    urldate = {2018-05-31},
    date = {2009-10},
    langid = {english},
    file = {Snapshot:/Users/andreamcornejo/Zotero/storage/RK7KP6U8/articles.html:text/html}

答案1

您的bib文件设置为biblatex,而不是bibtexnatbib因此,您拥有的大多数字段均不受支持,有些字段需要替换(dateyearmonthjournaltitlejournal)。

您希望您的条目看起来像这个 MWE:

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{bruhn_mckenzie,
    title = {In Pursuit of Balance: Randomization in Practice in Development Field Experiments},
    volume = {1},
    pages = {200-232},
    number = {4},
    journal = {American Economic Journal: Applied Economics},
    author = {Bruhn, Miriam and {McKenzie}, David},
    year = {2009},
    month = oct,
  }
\end{filecontents}
\usepackage{natbib}
\begin{document}
\nocite{*}
\bibliographystyle{chicago}
\bibliography{\jobname}
\end{document}

输出

或者,您可以使用biblatex它来提供更多的灵活性并支持您输入的所有字段bib

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{bruhn_mckenzie,
    title = {In Pursuit of Balance: Randomization in Practice in Development Field Experiments},
    volume = {1},
    issn = {1945-7782},
    url = {https://www.aeaweb.org/articles?id=10.1257/app.1.4.200},
    doi = {10.1257/app.1.4.200},
    shorttitle = {In Pursuit of Balance},
    abstract = {We present new evidence on the randomization methods used in existing experiments, and new simulations comparing these methods. We find that many papers do not describe the randomization in detail. ({JEL} C83, C93, O12)},
    pages = {200-232},
    number = {4},
    journaltitle = {American Economic Journal: Applied Economics},
    author = {Bruhn, Miriam and {McKenzie}, David},
    urldate = {2018-05-31},
    date = {2009-10},
    langid = {english},
    file = {Snapshot:/Users/andreamcornejo/Zotero/storage/RK7KP6U8/articles.html:text/html}
}
\end{filecontents}
\usepackage[authordate,natbib]{biblatex-chicago}
\addbibresource{\jobname.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}

输出

相关内容