For a paper, I am using the following class:
\documentclass[utf8]{frontiersSCNS}
Within this class, I would like to place two images next to each other. None of these answers work for me.
The code below works, but locates pictures below each other instead of next to each other.
\begin{figure}[!tbp]
\centering
{\includegraphics[width=0.5\textwidth]{Interpretability VS. AUC_20.pdf}}
\hfill
{\includegraphics[width=0.5\textwidth]{Interpretability VS. AUC_all.pdf}}
\caption{Coherence scores for topic models with the top 10 and 20 words.}
\label{fig:coherence_linechart}
\end{figure}
How can I get my images next to each other into one picture?