自定义书目

自定义书目

我尝试使用 cmd 面板创建自定义参考书目样式 latex makebst。我观看了Youtube 视频阅读大量博客文章(例如) 并且所有程序都相同。所以我也做了同样的事情。但如果我使用我的 bib 样式,我会收到消息,尽管我创建了一个资料来源文件并将其链接到\bibliography{sources}(有时在序言中,有时在 document/ 中,位于 \begin{document} 和 \end{} 之间,甚至位于 \end{} 下),并且在生成的 pdf 中,在使用 的地方会出现问号\cite{}资料来源文件与 BibLatex 和 BibTex 一起使用(我使用过\autocite{}但未为自定义包定义)。

我使用了\usepackage{natbib}互联网上显示的软件包,但没有任何区别。我甚至尝试过不使用任何软件包(没有 natbib、没有 Bibtex,没有其他),结果完全相同。

我的程序是:

打开 cmd 面板,输入latex makebst,回答所有问题,将 .bst 文件复制到我想要创建的文档的文件夹中,定义\bibliographystyle{first_try},其中 first_try 是我给 .bst 文件起的名字,并将我的源与 链接起来\bibliography{sources}

那么我忘记了什么?

示例代码:

\documentclass[]{scrreprt}
\usepackage{packets} %file where i load all packages but none of them are relevant or i insert  \usepackage{natbib} there

\author{-------}
\title{+++++++}
\date{October 2022}
\begin{document}
\maketitle
I want to cite here \cite{hobbit:original}
\bibliography{sources}
\bibliographystyle{first_try}

\tableofcontents
\include{first chapter}
\include{second chapter}

%\printbibliography[heading=bibintoc,title={References}] % only for BibLatex
\end{document}

相关内容