I submitted a paper and it is accepted but it should have some modifications. For example, I used a ".bib" file as my bibliography database. The reviewer said this.
So we should move bibliography to ".tex" file. But if we use such codesExecutable LaTeX files requiring BibTeX and other additional files cannot be processed
Code: Select all
\begin{thebibliography}{widest-label}
\bibitem[label]{cite_key}
...
\end{thebibliography}
Code: Select all
@article{marvel99,
author = {L.M. Marvel AND C.G. Boncelet and C.T. Retter },
title = {Spread spectrum image steganography},
journal = {IEEE Trans. on Image Processing},
year = { 1999},
volume = { 8},
number = { 8},
pages = { 1075 - 1083 },
month = { Aug},
}
Code: Select all
\bibitem{marvel99}{author=L.M. Marvel AND C.G. Boncelet and C.T. Retter}, ...
Note that I used
\begin{filecontents}{bibfile.bib}
but I think it may be forbidden since although it is not need to a bib file but it creates a bib file.Thanks so much.