无法更改我的参考书目的样式

无法更改我的参考书目的样式

我的书目有问题,目前我正在使用如下 bibtex 条目:

    @article{Tay,
    author = {F. E. H. Tay; L. J. Cao},
    title = {Improved financial time series forecasting by
    combining Support Vector Machines with
    self-organizing feature map},
    journaltitle = {Intelligent Data Analysis},
    date = {2001},
    volume = {5},
    pages = {339-354},
    }

但由于某种原因,它编译成

F. E. H. Tay; L. J. Cao. Improved financial time series forecasting by combining support vector machines with self-organizing feature map. 5:339–354.

没有年份和期刊标题!这就是我的问题,我需要它们。

目前我正在使用

\bibliographystyle{plain}

但将其更改为其他样式根本没有效果,我的意思是参考书目条目没有变化,由于某种原因这个命令不起作用。

如果有人能以某种方式帮助我解决这个问题,那就太好了。我正在使用 TexStudio。

答案1

BibTeX 的plain书目样式以及几乎所有其他基于 BibTeX 的书目样式都无法识别 —— 因此也无法处理 —— 名为date和 的字段journaltitle。请改用yearjournal

另外,您应该使用关键字and作为作者之间的分隔符。术语and是字段中的关键字author;请勿使用;(分号)。

完整 MWE 的结果:

在此处输入图片描述

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{demobib.bib}
@article{Tay,
    author  = {F. E. H. Tay and L. J. Cao},
    title   = {Improved financial time series forecasting by
               combining Support Vector Machines with
               self-organizing feature map},
    journal = {Intelligent Data Analysis},
    year    = {2001},
    volume  = {5},
    pages   = {339-354},
}
\end{filecontents}
\bibliographystyle{plain}

\begin{document}
\cite{Tay}
\bibliography{demobib}
\end{document}

相关内容