更改单个 .bib-entry 的样式

更改单个 .bib-entry 的样式

我在参考书目中有一个条目,我想更改它的样式。但只更改这一个,所以我不想更改其他所有样式。它看起来如下: 在此处输入图片描述 但我希望它是:[Wei24] Eric W. Weisstein,Proth 数字,整数序列在线百科全书中的条目 A080075,https://oeis.org/A080075

因此:不要使用引号,在 >>In:<< 后添加“Entry...”且不要使用冒号。我该怎么做?这是我的文件:

@article{oeis080075,
    author={Eric W. Weisstein},
    title={Proth numbers},
    year={2024},
    url={https://oeis.org/A080075},
    urldate = {2024-03-19},
    journal={The on-line encyclopedia of integer sequences},
}

答案1

我建议您 (a) 将条目类型从 更改为@article并且@misc(b) 更改

journal={The on-line encyclopedia of integer sequences},

howpublished={Entry A080075 in The On-Line Encyclopedia of Integer Sequences},

一般性说明:该@article条目类型只适用于发表在学术期刊上的文章。《整数序列在线百科全书》似乎不属于此类。


在此处输入图片描述

\documentclass[ngerman]{article}
\begin{filecontents}[overwrite]{mybib.bib}
@misc{oeis080075,
    author={Eric W. Weisstein},
    title={Proth numbers},
    year={2024},
    url={https://oeis.org/A080075},
    urldate = {2024-03-19},
    howpublished={Entry A080075 in The On-Line Encyclopedia of Integer Sequences},
}
\end{filecontents}

\usepackage[style=alphabetic]{biblatex}
\addbibresource{mybib.bib}

\usepackage{babel}
\usepackage{xurl}

\begin{document}
\nocite{*}
\printbibliography
\end{document}

相关内容