LaTex基础-Figure

1. 子图

注意, 子图和正常的figure也是一样有caption的, 也可以加\label, 为了突出重点就不搞复杂了. 下面是一般要引入的package

\usepackages{subcaption}

\usepackage{graphicx}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
\begin{figure}
\centering
\begin{subfigure}{0.4\textwidth}
\includegraphics[width=\textwidth]{example-image}
\end{subfigure}
% 这里很微妙, 如果没有这个\quad, 两个子图会垂直并列, 加上后就是水平并列
% 使用 \hfill 也能起到让子图水平并列的作用
% 当然如果水平摆不下, 剩余的图还是会去下一行挤
\quad
\begin{subfigure}{0.4\textwidth}
\includegraphics[width=\textwidth]{example-image}
\end{subfigure}

\caption{The common architecture of a recurrent VAE. }
\label{fig:recurrent_vae}
\end{figure}

LaTex基础-Figure
https://www.torch-fan.site/2022/07/28/LaTex基础-Figure/
作者
Torch-Fan
发布于
2022年7月28日
更新于
2022年11月15日
许可协议