citep 中缺失(

citep 中缺失(

我有一个访问过的网站的引用,但是当我将其与多篇论文一起引用时,括号不见了。 在此处输入图片描述 有人知道我该如何修复这个问题吗?

@article{weisstein2000levenberg,
  title={Levenberg-Marquardt Method},
  author={Weisstein, Eric W},
  journal={https://mathworld. wolfram. com/},
  year={2000 (accessed November 10, 2020)},
  publisher={Wolfram Research, Inc.}
}

答案1

我将使用 来给您一个示例biblatex。在此场景中,根据您的参考,问题出在 字段上year,该字段应为数字。

“accessed ...”注释必须出现在参考文献中,而不是文中。

或者使用urlurldate(格式为 YYYY-MM-DD)字段,在这种情况下,您无需进一步干预即可获得文本“于 2020 年 10 月 10 日检索自https://mathworld.wolfram.com/“印在最后。

或者使用字段note,在这种情况下您将得到方括号内的内容,例如[my text]

\documentclass{article} 

\usepackage[style=apa,
    backend=biber,
    natbib=true,
    language=american]
    {biblatex}

\begin{filecontents*}{\jobname45.bib}
    
@article{weisstein2000levenberg,
    title={Levenberg-Marquardt Method},
    author={Weisstein, Eric W},
    url={https://mathworld.wolfram.com/},
    urldate  = {2020-10-10},
    year=2000,
    publisher={Wolfram Research, Inc.},
}

@article{yoon,
    author       = {Yoon, Myeong S. and Ryu, Dowook and Kim, Jeongryul and Ahn,
        Kyo Han},
    title        = {Palladium pincer complexes with reduced bond angle strain:
        efficient catalysts for the {Heck} reaction},
    journaltitle = {Organometallics},
    date         = 2006,
    volume       = 25,
    number       = 10,
    pages        = {2409-2411},
    indextitle   = {Palladium pincer complexes},    
}
    
@book{worman,
    author       = {Worman, Nancy},
    title        = {The Cast of Character},
    date         = 2002,
    publisher    = {University of Texas Press},
    location     = {Austin},
    langid       = {english},
}   

@article{Carlson2011, 
    author = {Carlson, Nicholas},
    booktitle = {Businessinsider.com},
    title = {{How Many Users Does Twitter REALLY Have?}},
    note = {Available online at \url{www.businessinsider.com/chart-of-the-day-how-many-users-does-twitter-really-have-2011-31/3}},
    year = {2011},
}

\end{filecontents*}

\addbibresource{\jobname45.bib}

\begin{document}    

    It behave like Gauss--Newton and  closer to gradient descent 
(\cite{weisstein2000levenberg}; \cite{worman}; \cite{yoon} and \cite{Carlson2011}).

\printbibliography
\end{document}

输出

相关内容