书目编纂问题

书目编纂问题

我的乳胶文件为,

 % !TeX spellcheck = <none>
\documentclass[12pt]{book}
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{relsize}
\usepackage{array}
\usepackage{float}
\usepackage{multirow}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{textcomp}
\usepackage[left=3cm,right=2cm,top=3cm,bottom=2cm]{geometry}
\usepackage{fancyhdr}
\fancyhf{}
\cfoot{\thepage}
\pagestyle{fancy}
\setcounter{secnumdepth}{4}
\setcounter{tocdepth}{4}
\usepackage{tikz}
\usepackage{epigraph}
\usepackage{lipsum}
\usepackage{natbib}
%%\usepackage{biblatex}
%%\usepackage{bibtex}
\usepackage{hyperref}
\usepackage{filecontents}

\begin{document}
    %titlepage
    \thispagestyle{empty}
    \begin{center}
        
            %University logo
            \includegraphics[width=0.6\linewidth]{qau3.jpg}
            \par
            \vspace{1cm}
            %Thesis title
            {\LARGE{\textbf{Study of the Production of the Drell-Yan Cross-Section in $\mu^{-}\mu^{+}$ channel with $\sqrt{s} = 13 \;\; TeV$ using $2016$ CMS Data}\par}}
            \vspace{1cm}
            {\LARGE $\odot-\odot-\odot-\odot-\odot-\odot-\odot-\odot-\odot-\odot-\odot-\odot-\odot-\odot$}
            \newline\newline\newline
            %Author's name
        \textbf{{{ \underline{{\large Author:} Muhammad Jamshid}}}}
        \hfill
        \textbf{{{ \underline{{\large Supervisor:} Shamona Fawad Qazi}}}} \\
        {\normalsize { [email protected]}}
        \hfill
        {\normalsize { [email protected]}}
        \newline \newline
            %Degree
            {\large A thesis submitted for the partial fulfillment of degree of master of philosophy (M.Phil) in the department of physics, Quaid-I-Azam university, Islamabad\par}
        
            %Date
            {\Large September 2020}
        
    \end{center}
    \clearpage
\newpage
\chapter*{Abstract}
\input{Abstract}
\chapter*{Aknowledgement}
\input{Aknowledgement}
\chapter*{Declaration}
\input{Declaration}
\chapter*{Dedication to}
\input{Dedication}
\tableofcontents
\chapter{Introduction to the Standard Model}
\input{chapter 11}
\chapter{Relativistic Particle Kinematics}
\input{chapter 12}
\chapter{Accelerators and Colliders Experiments}
\input{chapter 13}
\chapter{Structure of Hadrons in QCD}
\input{chapter 14}
\chapter{Anaylsis and Results}
\input{chapter 15}
\chapter*{Conclusions}

\bibliography{References}
\bibliographystyle{thesisstyle}
\end{document}

但是当我尝试运行它时,我得到的是“?”而不是引用编号,参考书目无法编译,并且出现以下错误......

I found no \bibdata command---while reading file My Thesis.aux
I found no \bibstyle command---while reading file My Thesis.aux
(There were 2 error messages)

Process exited with error(s)

有人能帮我解决这个问题吗......???

答案1

BibTeX比贝尔不是 LaTeX 意义上的包,而是用于生成可从中调用的参考书目的后端(程序)纳特比布或者BibLaTex. 为了提高灵活性,使用BibLaTex(Biber)BibLaTex(BibTex)或者NatBib(BibTex). 第二个,BibLaTex(BibTex),目前是事实上标准。

  1. .bib 文件应该位于你的工作目录中,在本例中References.bib,并具有正确的格式(样本1 样本2)。
  2. 在本例中,.bst 文件应该位于您的工作目录中thesisstyle.bst
  3. 样式应该在生成参考书目之前设置,在这种情况下:
\bibliography{References}
\bibliographystyle{thesisstyle}
  1. 最重要的是,文档正文应包括以下引用:命令\cite
  2. 在使用 BibTex/Biber 之前,首先编译 .tex 文件,该文件将在 .aux 文件中标记所需的调用。

有关详细信息,请参阅此条目

相关内容