错误消息:LaTeX 找不到 ieeetrans.sty

错误消息:LaTeX 找不到 ieeetrans.sty

我的代码是

\documentclass[oneside,12pt]{Classes/VTU}
\title{TITLE OF THE THESIS}

\author{by \\ \vspace{2mm}NAME OF CANDIDATE \vspace{5mm}}
\collegeordept{Department Name}
\university{College Name}

\renewcommand{\submittedtext}{A Thesis submitted to \\VISVESVARAYA TECHNOLOGICAL UNIVERSITY \\ Belgaum \\for award of degree of }
\degree{Doctor of Philosophy in -------------}
\degreedate{Year / Year}

\hbadness=10000
\hfuzz=50pt

\usepackage{StyleFiles/watermark}
\usepackage{multirow}
\usepackage{ieeetran}
\begin{document}

\renewcommand\baselinestretch{1.2}
\baselineskip=18pt plus1pt

\maketitle

\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}

\begin{romanpages}
\include{Certificate/certificate}
\include{Declaration/declaration}
\include{Acknowledgement/acknowledgement}
\include{Dedication/dedication}
\include{Abstract/abstract}
\printglossary  
\tableofcontents
\listoffigures
\listoftables
\end{romanpages}

\include{Introduction/introduction}
\include{Chapter1/chapter1}
\include{Chapter2/chapter2}
\include{Chapter3/chapter3}
\include{Chapter4/chapter4}
\include{Chapter5/chapter5}
\include{Conclusions/conclusions}
\include{Futurework/futurework}

\appendix
\include{Appendix1/appendix1}
\include{Appendix2/appendix2}

\bibliographystyle{plain}
%\bibliographystyle{ieeetr}
\bibliography{References/references}
\addcontentsline{toc}{chapter}{References}

\end{document}

该错误表明无法找到ieeetran.sty并且无法显示引用。

答案1

IEEEtran是一个类,它本身就是您以 IEEE 格式撰写论文(无论是期刊还是文章)所需的一切。它包括论文和参考书目所需的所有格式。这在文档的开头声明。例如:

\documentclass[journal]{IEEEtran}

可以找到以 IEEE 格式撰写的所有信息以及模板和说明这里

现在,如果你想要的是你的参考书目IEEE 格式,请访问这一页. 别忘了阅读 IEEEtran_HOWTO.pdf。

然后只需要写一下:

\bibliographystyle{IEEEtran}
\bibligraphy{mybibbliographyfile}

答案2

您需要下载 IEEEtran 包。您可以使用 MikTeX 中的包管理器进行下载,该包管理器可能也已安装。

相关内容