我有一些困难,使我的推荐信看起来像我想在我的文件。
目前,我正在biblatex
中使用这些参数
\usepackage[backend=bibtex, url=false, style=authoryear, syle=verbose-ibid, maxbibnames=99]{biblatex}
然后,我只需在文档末尾执行一个\printbibliography
来显示我的所有引用。
我努力显示所有作者的名字,而不是其他人,我还添加了自动同上显示的挣扎,但我设法用我在\usepackage[...]{biblatex}
中添加的不同参数修复了所有这些。
现在,我唯一想要改变的是这个恼人的“In:”。如下图所示:“In:”问题
如您所见,In:显示文章的日志。我希望能看到日记,但不想看"In:“。它也没有任何意义,因为当没有指定日记时,它只是显示一个奇怪的“In:”。正如我们在第二次引用中所看到的
下面是bib的例子,其中只有"In:.“:
@article{burke2008coastal,
title={Coastal capital: economic valuation of coral reefs in Tobago and St. Lucia.},
author={Burke, Lauretta and Greenhalgh, Suzie and Prager, Daniel and Cooper, Emily and others},
year={2008},
publisher={World Resources Institute}
}
如果你有任何想法的话,这会对我有很大帮助的!
发布于 2022-05-30 14:26:19
\renewbibmacro{in:}{}
完全删除In:
article
是否确实是一种合适的条目类型。你在问题中显示的更像是一个报告而不是一篇文章.style
而不是syle
(尽管加载两种样式没有多大意义.)\documentclass{article}
\usepackage[backend=bibtex, url=false, style=authoryear, style=verbose-ibid, maxbibnames=99]{biblatex}
\begin{filecontents*}[overwrite]{\jobname.bib}
@article{burke2008coastal,
title={Coastal capital: economic valuation of coral reefs in Tobago and St. Lucia.},
author={Burke, Lauretta and Greenhalgh, Suzie and Prager, Daniel and Cooper, Emily and others},
year={2008},
publisher={World Resources Institute}
}
\end{filecontents*}
\addbibresource{\jobname.bib}
\renewbibmacro{in:}{}
\begin{document}
\cite{burke2008coastal}
\printbibliography
\end{document}
https://stackoverflow.com/questions/72435875
复制相似问题