I'm writing a paper that uses an IEEEtran layout, but for some reason it doesn't seem to be loading the fonts correctly. The abstract should be bold, but it currently isn't, for example.
I'm currently running LuaLaTeX using the following latexmk command:
latexmk -pdf -bibtex-cond -lualatex -use-make -interaction=nonstopmode
Am I forgetting to install something? I have tried installing all the tex packages that had anything font related in the name to no avail.
Is there a way for me to debug and check what is happening?
Here's the minimal example:
\documentclass[conference,a4paper]{IEEEtran}
\title{The title}
\author{
\IEEEauthorblockN{Author}
\IEEEauthorblockA{Place\
University of Place\
Place\
Email: email@example.com}
}
\begin{document}
\maketitle
\begin{abstract}
This should be bold. It currently isn't.
\end{abstract}
\begin{IEEEkeywords}
key words here
\end{IEEEkeywords}
\section{Introduction}
blah blah blah
\end{document}
Ps.: I've seen a bunch of related questions, but they all were related to languages that use different scripts than latin, which is not my case.


