I am attempting to use "in-line" images as LaTeX figures (so that they can be numbered and appear in the Table of Figures), in a two-column document created with the package << multicols >>.
If I use this "normal" construction syntax:
`
\begin{multicols}{2}
[
\section{First Section}
\large{\textsl{All human things are subject to decay. And when fate summons, Monarchs must obey.\todo{findreference}}}\normalsize
]
\lipsum[1-2]
%\begin{figure}
\includegraphics[width=0.50\textwidth]{placeholder.png} \caption{\textbf{\textit{Here is an inline image}}}
%\label{fig:The placeholder logo}
%\end{figure}
\lipsum[4-6]
]
\textbf{This is the end of the First Section}
\end{multicols}
`
the image disappears from the column(NB: here the offending lines have been % away).
If this construct doesn't work,
Why does it fail (e.g., using the <> vs specifying [twocolumns] option in the document class)?
How do I turn these images into "Figures" ??


multicolumndoesn't allow floating environments. Why you use\begin{multicols}{2}? Does option\documentclass[twocolumn]{article}not provide what you after? – Zarko Dec 30 '22 at 20:16\largeis a switch, not a command, so\large{Stuff}is the same as\large Stuffand will make everything large until the group ends or you get to\normalsize. – Teepeemm Dec 30 '22 at 20:45