更改樣式時我的參考書目不會更新

更改樣式時我的參考書目不會更新

我的參考書目存在一些我無法解決的問題。

當我編譯它時,我收到以下錯誤訊息:

BibTeX:非法,另一個 \bibstyle 指令:\bibstyle : {plain}。

當我更改參考書目樣式時,它也不會更新。

這是我的主要:

\documentclass{article}

% Importing settings from our file "setup.sty"
\usepackage{setup}
\usepackage{natbib}  

% Beginning of document
\begin{document}

% Inserting title page
\import{./}{title}

% Defining front matter settings 
\frontmatter

% Abstract 
\begin{abstract}
    \import{./Sections/}{0_abstract}
\end{abstract}
\clearpage


% Inserting table of contents
\tableofcontents

% Inserting list of figures & list of tables
\listoffigures
\listoftables

% Defining main matter settings 
\mainmatter


%Sections
\import{./Sections/}{1_introduction}
\import{./Sections/}{2_method}
\import{./Sections/}{3_results}
\import{./Sections/}{4_discussion}
\import{./Sections/}{5_conclusion}

% Inserting bibliography
\newpage
\bibliographystyle{plain}
\bibliography{references}

% Inserting appendix with separate settings
\addappendix

% End of document
\end{document}

我的參考文件在這裡:


@ONLINE {Supervised,
    author    = "Andrew Ng",
    title     = "CS229 Lecture notes",
    publisher = "Stanford",
    url       = "http://www.cs.bu.edu/~hwxi/GitHub/ATS-Postiats-contrib/projects/LARGE/ML/CS229/cs229.stanford.edu/notes/cs229-notes1.pdf",
    urldate   = "2020-09-07"
}

@article{ML_def,
    author =       "A.L. Samuel",
    title =        "{Some studies in machine learning using the game of checker}. ({English})",
    journal =      "IBM J. Res. Develop.",
    volume =       "3",
    number =       "3",
    pages =        "210--229",
    year =         "1959"
}
@book{Mitchell, 
    place={New York}, 
    title={Machine Learning}, 
    publisher={McGraw-Hill Education}, 
    author={Mitchell, Tom M.}, 
    year={1997}
}

@book{Definitions, 
    place={Amsterdam}, 
    title={Data Analyticsfor Intelligent Transportation Systems}, 
    publisher={Elsevier}, 
    author={Mashrur Chowdhury and Amy Apon and Kakan Dey}, 
    year={2017}
}

@book{SupMet, 
    place={Amsternam}, 
    title={Information Security Analytics}, 
    publisher={Elsevier}, 
    author={M.Talabis and R. McPherson and I. Miyamoto and J. Martin and D. Kaye}, 
    year={2014}
}

@book{Manufacturing, 
    place={Singapore}, 
    title={Groover's Principles of Modern Manufacturing}, 
    publisher={Wiley}, 
    author={Mikell P. Groover}, 
    year={2016}
}

相關內容