寻找符合期刊特殊格式要求的参考书目样式文件

寻找符合期刊特殊格式要求的参考书目样式文件

以下代码是期刊参考书目的示例文件。我需要使用 bibtex 来编写参考书目。我该输入什么才能\bibliographystyle{ }获得这种期刊格式?提前致谢。

‎\begin{thebibliography}{99}‎

‎\bibitem{1} Author‎, "‎Title of the Paper"‎, ‎\emph{Journal name}‎, ‎Vol.X‎, ‎No.X‎, ‎(200X)‎, ‎pp.XX-XX.}

‎\bibitem{2} Author‎, "‎Title of the Paper"‎, ‎\emph{Proceedings of the conference name}‎, ‎Vol.X‎, ‎No.X‎, ‎(200X)‎, ‎pp.XX-XX.‎

‎\bibitem{3} Author‎, ‎\emph{Title of the Book}‎, ‎Publisher‎, ‎(200X).

‎\bibitem{4} A.A‎. ‎Soliman‎,  ‎A numerical simulation and explicit solutions of‎
‎KdV-Burgers' and Lax's seventh-order KdV equations‎. ‎\emph{Chaos‎
‎Solitons Fractals} 29(2) (2006) 294--302.
‎\end{thebibliography}‎

在此处输入图片描述

答案1

您可以尝试使用该makebst工具根据您的需求生成 bistyle。此工具通过执行

latex makebst

在终端窗口中。它会询问一些问题,然后根据您的答案生成 bibstyle。如果您对结果不满意,您可以手动编辑 bibstyle,但这需要了解 bibtex 的语法。

答案2

尝试一下这个,它应该会对你有帮助:

\newpage\addcontentsline{toc}{chapter}{Bibliographie} %this is to add you bib to the ToC.
\bibliographystyle{ieeetr} %this si the style, ieeetr is the most used and if you want another style, try abbrv, acm, alpha, apalike, plain, siam or unsrt.
\bibliography{biblio} %this is the file of you bib ant it should be in the same directory as your main file.

答案3

有些期刊没有严格的规定来强制您使用给定的参考格式。

再次查看作者信息,也许您可​​以使用任何您喜欢的格式(只要您在每个引用中提供所有相关信息)。

相关内容