无法在我的论文中包含来自外部文件的 BibTeX

无法在我的论文中包含来自外部文件的 BibTeX

我想在我的introduction文件中引用参考文献。不幸的是,我不知道应该给出哪种文档类型。我的main.tex已经有类型了。有什么解决方案可以管理论文中的参考文献吗?

main.tex文件:

\documentclass[12pt, a4paper, openright]{report}

\usepackage{graphicx}
\usepackage{float}
\graphicspath{{images/}}

\usepackage[margin=1in, left=1in, includefoot]{geometry}

\usepackage[hidelinks]{hyperref}

\begin{document}

    \input{titlepage}

    \pagenumbering{roman}

    \input{abstract}
    \addcontentsline{toc}{section}{\numberline{}Abstract}
    \cleardoublepage

    \input{dedication}
    \addcontentsline{toc}{section}{\numberline{}Dedication}
    \cleardoublepage

    \input{declaration}
    \addcontentsline{toc}{section}{\numberline{}Declaration}
    \cleardoublepage

    \input{acknowledgements}
    \addcontentsline{toc}{section}{\numberline{}Acknowledgements}
    \cleardoublepage

%LIST OF FIGURES, LIST OF TABLES
\listoffigures
\addcontentsline{toc}{section}{\numberline{}List of Figures}
\cleardoublepage

%TABEL OF CONTENT
\tableofcontents
\thispagestyle{empty} %this is used to remove page number from table of content page
\cleardoublepage %used to separate the table of content from introduction

\pagenumbering{arabic}

\chapter{Introduction}
\include{chapters/introduction}

\chapter{Empirical Study on Child Computer Interaction}
\include{chapters/chap06}
\cleardoublepage


\bibliographystyle{IEEEtran}
\bibliography{/Users/pythonbuddha/Documents/Thesis/References.bib}
\section*{References}
\addcontentsline{toc}{section}{\numberline{}References}
\cleardoublepage

%Appendix starts here

\appendix
\section*{}
\addcontentsline{toc}{section}{\numberline{}Appendix}
\cleardoublepage
This is the appendix.

\end{document}

ìntroduction.tex`文件:

\thispagestyle{plain}

    \vspace{0.9cm}
\section*{Introduction}
    \vspace{0.4cm}
A positive approach for the scratch users are children can brush up their mathematical skills while making small programs. \cite{lewis2012building}

相关内容