书目格式转换

书目格式转换

根据 Springer 的模板,参考书目应如下:

\begin{thebibliography}{}
    \bibitem{RefJ}
    % Format for Journal Reference
    Author, Article title, Journal, Volume, page numbers (year)
    % Format for books
    \bibitem{RefB}
    Author, Book title, page numbers. Publisher, place (year)
\end{thebibliography}

我已经有一个bib包含以下内容的文件:

@article{kargupta2004fourier,
  title={A fourier spectrum-based approach to represent decision trees for mining data streams in mobile environments},
  author={Kargupta, Hillol and Park, Byung-Hoon},
  journal={Knowledge and Data Engineering, IEEE Transactions on},
  volume={16},
  number={2},
  pages={216--229},
  year={2004},
  publisher={IEEE}
}

    @article{mukherjee2006privacy,
      title={A privacy-preserving technique for Euclidean distance-based mining algorithms using Fourier-related transforms},
      author={Mukherjee, Shibnath and Chen, Zhiyuan and Gangopadhyay, Aryya},
      journal={The VLDB Journal—The International Journal on Very Large Data Bases},
      volume={15},
      number={4},
      pages={293--315},
      year={2006},
      publisher={Springer-Verlag New York, Inc.}
    }
    @article{freund1997decision,
      title={A decision-theoretic generalization of on-line learning and an application to boosting},
      author={Freund, Yoav and Schapire, Robert E},
      journal={Journal of computer and system sciences},
      volume={55},
      number={1},
      pages={119--139},
      year={1997},
      publisher={Elsevier}
    }

我的文件中的代码.TEX如下:

\usepackage[round]{natbib}
    \newpage
    \bibliography{BibliographyFinal}
    \bibliographystyle{apa}

我该如何转换它才能满足所要求的参考书目格式?

答案1

bib文件即可使用。另外,样式需要根据 Springer 文件定义。将相关文件复制到目录bst后,使用以下命令即可完成:.bst

\usepackage[round]{natbib}
    \newpage
    \bibliography{BibliographyFinal}
    \bibliographystyle{spbasic}

spbasic选择的风格在哪里.bst

相关内容