Subfigures should be converted to *fig-group* elements. ``` % pandoc -f latex -t jats \begin{figure}[H] \begin{subfigure} \centering \includegraphics[height=1.5in]{assets/A.png} \caption{Graph for function *A*.} \label{fig:A} \end{subfigure} \begin{subfigure} \centering \includegraphics[height=1.5in]{assets/B.png} \caption{Graph for function *B*.} \label{fig:B} \end{subfigure} \label{fig:graphs} \caption{Function graphs.} \end{figure} ^D

Function graphs.

Graph for function *A*.

Graph for function *B*.

```