IEEEtran 中的词汇表和引文不起作用

IEEEtran 中的词汇表和引文不起作用

在此处输入图片描述我正在写一篇论文,遇到了这个问题。下面的代码产生了所附照片中的错误在此处输入图片描述

词汇表仅包含

\newglossaryentry{JMLD}{name=JMLD, description=joint maximum likelihood detection}

Section01 仅包含

\cite{Diana2018} is \gls{JMLD}

bibliography.bib 仅包含

@INPROCEEDINGS{Diana2018, 
author={Dawoud, D. W. and F. Heliot and M. A. Imran and R. Tafazolli}, 
booktitle={IEEE Int. Conf. Commun., (ICC), Kansas City, MO}, 
title = {A novel orthogonal transmission scheme for visible light communication},
year={2018.}, 
month={May},}

但代码不起作用,知道问题是什么吗?是不是因为我对 Section01 使用了不同的文件夹,词汇表又如何呢?提前感谢你的帮助

\documentclass[conference]{IEEEtran}
\def\Conf{ICSPIS2021}
\usepackage[acronym]{glossaries}
\makeglossaries
\input{glossary}
\begin{document}
\section{Introduction}
\label{sec:SectionI}
\input{\Conf/Section01}

\printglossaries

\bibliographystyle{IEEEtran}
\bstctlcite{BSTcontrol}
\bibliography{bibliography.bib}

\end{document}

相关内容