#+latex_header: \usepackage[demo]{graphicx} #+latex_header: \usepackage{subcaption} * Question Are there any workarounds people use to create subfigures in Org Mode when exporting to LaTeX? Example output: * Attempt #+name: fig:fig #+caption: plots of.... #+begin_figure #+name: fig:sfig1 #+attr_latex: :caption \subcaption{1a} #+attr_latex: :options {0.5\textwidth} #+begin_subfigure #+attr_latex: :width 0.8\linewidth [[~/s/test/mip.png]] #+end_subfigure #+name: fig:sfig2 #+attr_latex: :options {0.5\textwidth} #+attr_latex: :caption \subcaption{1b} #+begin_subfigure #+attr_latex: :width 0.8\linewidth [[~/s/test/mip.png]] #+end_subfigure #+end_figure