参考文献と引用のコールアウトは印刷されません

参考文献と引用のコールアウトは印刷されません

記事を書いています。MWEは以下の通りです。

\documentclass[a4paper,times,12pt,ifthen]{article}
\usepackage{enumerate}
\usepackage{graphicx}
\usepackage{epsfig}
\usepackage{epstopdf}
\usepackage{nomencl}
%\makeindex
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage[top= 2.00cm,bottom = 2.00cm,left= 2.00cm,right= 2.00cm]{geometry}
\makeatletter % these following 3 command will print reference without box
\renewcommand*{\@biblabel}[1]{\hfill#1.}
\makeatother
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{authblk}
\usepackage[acronym,nonumberlist]{glossaries} % prints glossary without page number at end
\usepackage{longtable} %spans table in two pages
\usepackage{subfigure} %gives subfigures
\usepackage{array} % justify table content
\usepackage{booktabs} % will center justified table
\usepackage[authoryear]{natbib}
\usepackage{color} % will print colour text
\bibliographystyle{agsm}
\RequirePackage{ifthen}
\renewcommand{\nomgroup}[1]{%
\ifthenelse{\equal{#1}{G}}{\item[\textbf{Greek Symbols}]}{
\ifthenelse{\equal{#1}{S}}{\item[\textbf{Subscripts}]}{}}}
\makenomenclature
\makeglossaries

\begin{document}
Comparing results in \citep{Shigley2011} with \citet{Duffy2010} and \cite{Carslaw1959}.

\makenomenclature
\printnomenclature
\printglossaries
\bibliographystyle{unsrtnat}
\bibliography{CoalCombustion.bib}
\end{document}

BibtexファイルCoalCombustion.bibは

@book{Carslaw1959,
  title={Heat in solids},
  author={Carslaw, HS and Jaeger, JC},
  volume={19591},
  year={1959},
  publisher={Clarendon Press, Oxford}
}

@book{Duffy2010,
  title={Transform methods for solving partial differential equations},
  author={Duffy, Dean G},
  year={2010},
  publisher={CRC press}
}

@book{Shigley2011,
  title={Shigley's mechanical engineering design},
  author={Shigley, Joseph Edward},
  year={2011},
  publisher={Tata McGraw-Hill Education}
}

出力は ここに画像の説明を入力してください

本文と参考文献に引用が印刷されないのはなぜですか?

答え1

いくつかの提案/観察:

  • \bibliography{CoalCombustion.bib}に変更します\bibliography{CoalCombustion}。つまり、.bib拡張子を省略します。

  • 参考文献のスタイルを 1 つだけ選択するagsmunsrtnat両方ではないスタイルを選択した場合はagsmhar2natなどのパッケージとの互換性を最大限に高めるためにパッケージをロードしますhyperref

  • 必ずLaTeX、BibTeX、LaTeXの順に実行してください。さらに2回\cite、、\citepおよびから期待される引用コールアウトを生成します\citet

関連情報