I'd like to display three atomic structures (C, H, O), centered across a single row on the printed page using the \Bohr package.
I've naively attempted to use the multicol package with \includegraphics, but \includegraphics is looking for a file, not a function.
A plus would be to align the center of the three atoms vertically as well as horizontally.
The \Bohr package is quite useful. Once I can align the three atoms (C, H, O) I'm hoping to apply the same code to the atomic displays presented in the SE article Draw Bohr atomic model with electron shells in TeX? to better visualize the atomic structures.
Any and all thoughts/ideas appreciated.
\documentclass{article}
\usepackage{bohr}
\usepackage{multicol}
\begin{document}
\begin{multicols}{3}
\begin{figure}[tb]
\centering
\includegraphics[width=\linewidth]{\bohr{}{C}}
\caption{Carbon}
\end{figure}
\begin{figure}[tb]
\centering
\includegraphics[width=\linewidth]{\bohr{}{H}}
\caption{Hydrogen}
\end{figure}
\begin{figure}[tb]
\centering
\includegraphics[width=\linewidth]{\bohr{}{O}}
\caption{Oxygen}
\end{figure}
\end{multicols}
\end{document}



