blob: 7e6df30eec146f7a109c49ef9531284248b55ed1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
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
<fig-group id="figU003Agraphs">
<caption><p>Function graphs.</p></caption>
<fig id="figU003AA">
<caption><p>Graph for function *A*.</p></caption>
<graphic mimetype="image" mime-subtype="png" xlink:href="assets/A.png" />
</fig>
<fig id="figU003AB">
<caption><p>Graph for function *B*.</p></caption>
<graphic mimetype="image" mime-subtype="png" xlink:href="assets/B.png" />
</fig>
</fig-group>
```
|