Export to bibtex format issue

Journal and book names appear underlined rather italicized.
  • When you export to BibTeX, you are exporting to the standard .bib database format. it does not add markup to fields in the way you describe. If you are using LaTeX, the markup will depend upon the .bst style that you select.

    If you are not using LaTeX, are you mistaken as to the .csl style you are trying to use?
  • edited September 22, 2009
    Thanks for the quick response -- tracked it down to \usepackage{ulem} which I was using to allow for strikeouts with \sout{}.
  • edited September 22, 2009
    Your question is not related to Zotero, as Zotero does not format your references when you are using that toolchain.

    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}
    \bibliographystyle{IEEEtran}
    \begin{document}
    testng~\cite{test}
    \bibliography{test}
    \end{document}
    and test.bib:@article{test,
    title="Title",
    author="John Smith",
    journal="Journal",
    year=2008,
    }
    does have the article name in quotes and the journal in italics.

    EDIT: glad you fixed your issue.
Sign In or Register to comment.