mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-11 19:45:25 +03:00
21 lines
410 B
Text
21 lines
410 B
Text
# -*- mode: snippet -*-
|
|
# name: my-subfig
|
|
# key: subfigg
|
|
# --
|
|
|
|
\begin{figure}[h]
|
|
\centering
|
|
\begin{subfigure}[b]{${1:0.45}\textwidth}
|
|
\includegraphics[width=\textwidth]{$2}
|
|
\caption{$3}
|
|
\end{subfigure}%
|
|
\hspace{1cm}
|
|
\begin{subfigure}[b]{${4:0.45}\textwidth}
|
|
\includegraphics[width=\textwidth]{$5}
|
|
\caption{$6}
|
|
\end{subfigure}%
|
|
\caption{$7}%
|
|
\label{fig:$8}
|
|
\end{figure}
|
|
$0
|
|
|