LaTeX files in two-column layout can make full width figures using a figure* environment instead of the standard figure. I'm generating my LaTeX via RMarkdown/pandoc, and so not sure if/how I can control the figure environment in this way. Is there any simple way to do this? Maybe by just overriding the figure environment definition?
For example, install the rticles R package and go -> new rmarkdown -> from template -> PNAS template (a two column template).
That provides a default example that renders a 1-column-width figure from markdown:

knitting the .Rmd template, you will see this creates a .tex file that uses \begin{figure}. What change could you make to the template example to force pandoc to place the figure in a \begin{figure*} environment instead (short of a manual find-replace on the tex file?)
\begin{figure*}...\end{figure*}as latex snipped - samcarter_is_at_topanswers.xyz![]()figure format into\begin{figure}on the fly - cboettig