Export to bibtex format issue
Journal and book names appear underlined rather italicized.
This is an old discussion that has not been active in a long time. Instead of commenting here, you should start a new discussion. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
If you are not using LaTeX, are you mistaken as to the .csl style you are trying to use?
Try to isolate the issue with a minimum failing example to TeXShop, your pdf viewer, or your TeX distribution & use the proper support channel for that product (comp.text.tex for LaTeX/BibTeX/IEEEtran issue, don't know about for TexShop or your pdf viewer).FWIW, test.tex:
\documentclass{report}
and test.bib:\bibliographystyle{IEEEtran}
\begin{document}
testng~\cite{test}
\bibliography{test}
\end{document}
@article{test,
does have the article name in quotes and the journal in italics.title="Title",
author="John Smith",
journal="Journal",
year=2008,
}
EDIT: glad you fixed your issue.