IEEEtran is to be used with pdflatex (and for journal papers, one does not have a choice for a document which should be published). But in two use cases, compilation with lualatex can be desired.
- For conference papers, I want to achieve the – in my point of view – most satisfying appearance. And this includes the use of
unicode-math, since I recently discovered all of its convenient features. - For journal papers, I include all figures (created either with TikZ or pgfplots) as separate .pdf documents. Therefore, these documents could be compiled with
lualatex, especially when I want to make use of the lua-backend in pgfplots.
As a reference with reasonable math fonts, a simple pdflatex-compatible document may look like
\documentclass{IEEEtran}
\usepackage{mathtools}
\usepackage{newtxtext} % possible but not completely OK ?
\usepackage[cmintegrals]{newtxmath}
\usepackage{bm}
\begin{document}
aR$aR\bm{a}\mathbb{R}$
\end{document}
Changing the text font with the package newtxtext is apparently accepted, since I just checked a sample PDF with pdf-express and it passed the IEEE Xplore compatibility test.
How would I create a IEEEtran document for compilation with lualatex which uses fontspec and unicode-math and loads correct fonts, similar to newtx?
A related questions is found here: IEEEtran: Getting font right with lualatex. Unfortunately not with a satisying solution.