我对参考书目有疑问

我对参考书目有疑问

我对参考书目有疑问

这是我的代码:

\documentclass[11pt, a4paper]{article}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{natbib}
\usepackage[utf8]{inputenc}    
\usepackage{natbib}
\usepackage[usenames,dvipsnames]{xcolor}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}


\bibliographystyle{style}
\bibliography{bibfile.bib} %this command appear in the blue color not like the others 
\begin{document}

答案1

在使用参考书目(.bib)文件之前,您只需在 \bibliographystyle{} 中提及您将要使用哪种样式。

存在许多参考书目样式,包括 plain、ieee、ieeetr apalike、unsrt、ama、cj、nar 等。

此外,在使用它之前,您只需要在当前工作目录中添加.bst 文件。

这也许对你有帮助。

\documentclass[11pt, a4paper]{article}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{natbib}
\usepackage[utf8]{inputenc}    
\usepackage{natbib}
\usepackage[usenames,dvipsnames]{xcolor}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\begin{document}
\bibliographystyle{ieeetr} % This style is meant for IEEE. You can use anything based on your requirements.
\bibliography{bibfile} % Don't use the extension .bib after specifying the name of your reference database.
\end{document}

相关内容