Problem with italics in references imported from Papers
This discussion was created from comments split from: Bibliography Appears Without Italics.
This is an old discussion that has not been active in a long time. Before commenting here, you should strongly consider starting a new discussion instead. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
UPDATE: OK, html tags work. The issue is that I imported citations from a Papers library, and in this process all of the italized words became tagged with \emph, which does not work.
https://www.zotero.org/support/kb/rich_text_bibliography
Further update: the \emph gets added when exporting from Papers as .bib. When exporting as .ris then no tag at all gets added, so either way looks like a lot of hand-editing would be required to make this switch.
The \emph{} tags you see in a .bib file are the BibTeX formatting for italics. To replace these with HTML tags, open the .bib file in a text editor that supports regular expressions (regex) and run a command to replace this pattern:
(\\emph{)(.+)(})
with this pattern:
\2
.RIS isn't a display format, so I'm guessing that Papers just doesn't export rich text data with it.
(Also, it is generally good to just ask your question when you come to a help forum, without a derisive tone. The users here are glad to help, but exasperated statements like "Really?" or "Good grief" aren't really necessary or helpful. If something seems like an unreasonable amount of work, there is probably an easier way to do it.)
If you run into any other issues replacing the BibTeX markup with HTML or importing from papers to Zotero, let me know. Otherwise, always happy to help.